configuration.nix/system/programs/default.nix
2023-04-07 20:36:59 +05:30

16 lines
260 B
Nix

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