nix-git/modules/programs-base.nix
2024-12-03 22:18:20 +01:00

20 lines
613 B
Nix

{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
zenith # Terminal resource monitor / task manager
btop # Terminal resource monitor / task manager
htop # Terminal resource monitor / task manager
colmena
gnome-tweaks
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
];
};
}