All scripts have been moved to the overlay folder in the top level directory Overlay is now instantiated per configuration to make use of the host variable
24 lines
643 B
Nix
Executable File
24 lines
643 B
Nix
Executable File
{ lib, config, ... }: {
|
|
options = {
|
|
movOpts.sysEnv.nixSettings.enable =
|
|
lib.mkEnableOption "enables my nixos settings";
|
|
};
|
|
config = lib.mkIf config.movOpts.sysEnv.nixSettings.enable {
|
|
system.stateVersion = "24.05";
|
|
nix = {
|
|
settings = {
|
|
auto-optimise-store = true;
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
substituters = [ "https://nix-gaming.cachix.org" ];
|
|
};
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
};
|
|
time.timeZone = "America/New_York";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
};
|
|
}
|