configuration.nix/hosts/skipper/programs/default.nix

18 lines
308 B
Nix
Raw Normal View History

2023-07-11 22:41:18 +05:30
_: {
2023-04-07 20:36:59 +05:30
imports = [
./gnupg.nix
./neovim.nix
];
programs = {
dconf.enable = true;
fuse.userAllowOther = true;
2023-04-07 20:36:59 +05:30
git.enable = true;
seahorse.enable = true;
2023-07-01 11:41:12 +05:30
steam.enable = true;
2023-04-07 20:36:59 +05:30
xwayland.enable = true;
zsh.enable = true;
};
2023-05-18 16:11:26 +05:30
environment.pathsToLink = ["/share/zsh"];
2023-04-07 20:36:59 +05:30
}