.nix/system/programs.nix
2024-07-28 22:06:28 +02:00

48 lines
808 B
Nix

{ config, pkgs, ... }:
{
programs = {
_1password-gui = {
enable = true;
polkitPolicyOwners = [ "aethrvmn" ];
};
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;
# };
};
}