.nix/system/programs.nix

49 lines
808 B
Nix
Raw Normal View History

2024-07-23 19:12:34 +00:00
{ config, pkgs, ... }:
{
programs = {
2024-07-28 20:06:28 +00:00
_1password-gui = {
enable = true;
polkitPolicyOwners = [ "aethrvmn" ];
};
2024-07-23 19:12:34 +00:00
firefox.enable = true;
file-roller.enable = true;
labwc.enable = true;
nix-ld = {
enable = true;
libraries = with pkgs; [
zlib
libgcc
];
};
steam.enable = true;
thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-media-tags-plugin
thunar-volman
];
};
zsh.enable = true;
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
};
}