configuration.nix/hosts/skipper/programs/default.nix
2024-02-24 21:59:59 +05:30

17 lines
301 B
Nix

_: {
imports = [
./gnupg.nix
./neovim.nix
./steam.nix
];
programs = {
dconf.enable = true;
fuse.userAllowOther = true;
git.enable = true;
seahorse.enable = true;
xwayland.enable = true;
zsh.enable = true;
};
environment.pathsToLink = [ "/share/zsh" ];
}