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

16 lines
287 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"];
}