feat: Enable Git program in base services
The primary change in this commit enables the Git program in the base/default service module. This marks a configuration alteration at the systems level, transferring the 'programs.git.enable' declaration from 'systems/x86_64-linux/mx/default.nix' to 'modules/nixos/services/base/default.nix'. We've undertaken this change for better structuring of our service configuration.
This commit is contained in:
parent
7020c4acbc
commit
5c07871808
|
@ -157,7 +157,8 @@ in
|
|||
environment.GIT_CONFIG_GLOBAL = toString gitconfig;
|
||||
};
|
||||
|
||||
virtualisation.libvirtd.enable = true;
|
||||
programs.git.enable = true;
|
||||
|
||||
virtualisation.libvirtd.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
};
|
||||
|
||||
programs.git.config.safe.directory = "/var/lib/gitea/repositories/harald/nixcfg.git";
|
||||
programs.git.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
age
|
||||
|
|
Loading…
Reference in a new issue