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

16 lines
285 B
Nix

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