16 lines
283 B
Nix
16 lines
283 B
Nix
_: {
|
|
imports = [
|
|
./gnupg.nix
|
|
./neovim.nix
|
|
];
|
|
|
|
programs = {
|
|
dconf.enable = true;
|
|
fuse.userAllowOther = true;
|
|
git.enable = true;
|
|
nix-ld.enable = true;
|
|
xwayland.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
environment.pathsToLink = [ "/share/zsh" ];
|
|
}
|