mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
19 lines
565 B
Nix
19 lines
565 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
users.users.yoda = {
|
||
|
packages = with pkgs; [
|
||
|
btop # Terminal resource monitor / task manager
|
||
|
htop # Terminal resource monitor / task manager
|
||
|
colmena
|
||
|
|
||
|
gnome.gnome-tweaks
|
||
|
gnome.dconf-editor
|
||
|
unstable.resources # Resource monitor / task manager
|
||
|
|
||
|
#gnome-secrets # Password manager (Native Wayland client), but very slow.
|
||
|
keepassxc # Password manager. TODO Wayland: Maybe QT_QPA_PLATFORM defined in ghostwriter.nix fixed blurry fonts?
|
||
|
warp # Fast and secure file transfer
|
||
|
];
|
||
|
};
|
||
|
}
|