commit 0fd53124ec6db6983235c6261850781f0fdf9884
parent 21cadf4386143421704da9e06ce373c3f31f1444
Author: Vincent Demeester <vincent@sbr.pm>
Date: Sun, 7 Jun 2020 13:28:48 +0200
systems/modules: fix core.nix 🤕
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/systems/modules/core/nix.nix b/systems/modules/core/nix.nix
@@ -10,7 +10,6 @@ let
in
{
options = {
- environment.systemPackages = [ pkgs.git ];
core.nix = {
enable = mkOption { type = types.bool; default = true; description = "Enable core.nix"; };
gcDates = mkOption {
@@ -39,6 +38,7 @@ in
};
};
config = mkIf cfg.enable {
+ environment.systemPackages = [ pkgs.git ];
nix = {
allowedUsers = [ "@wheel" ];
binaryCaches = cfg.localCaches ++ [