.
This commit is contained in:
parent
6de1355091
commit
46b6fd3f17
4 changed files with 5 additions and 8 deletions
|
@ -30,6 +30,7 @@
|
||||||
|
|
||||||
shell = {
|
shell = {
|
||||||
default = "zsh";
|
default = "zsh";
|
||||||
|
corePkgs.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,10 +43,7 @@
|
||||||
|
|
||||||
shell = {
|
shell = {
|
||||||
default = "zsh";
|
default = "zsh";
|
||||||
toolset = {
|
corePkgs.enable = true;
|
||||||
git.enable = true;
|
|
||||||
gnupg.enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,10 +28,7 @@
|
||||||
|
|
||||||
shell = {
|
shell = {
|
||||||
default = "zsh";
|
default = "zsh";
|
||||||
toolset = {
|
corePkgs.enable = true;
|
||||||
git.enable = true;
|
|
||||||
gnupg.enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,8 @@ in
|
||||||
config = mkMerge [
|
config = mkMerge [
|
||||||
(mkIf (cfg.default != null) {
|
(mkIf (cfg.default != null) {
|
||||||
users.defaultUserShell = pkgs."${cfg.default}";
|
users.defaultUserShell = pkgs."${cfg.default}";
|
||||||
|
|
||||||
|
modules.shell.toolset.gnupg.enable = true;
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.corePkgs.enable {
|
(mkIf cfg.corePkgs.enable {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue