reorganization
This commit is contained in:
parent
f1cd1e461f
commit
f2c9e4d5b7
12 changed files with 140 additions and 30 deletions
17
default.nix
17
default.nix
|
|
@ -13,21 +13,16 @@ in {
|
|||
]
|
||||
++ (mapModulesRec' (toString ./modules) import);
|
||||
|
||||
# i mostly disagree with state versions, just use the oldest one i have set up
|
||||
# they seem reasonable at first but are so messy across multiple hosts
|
||||
# a lot of the time they're used for stuff that isn't even state (looking at you, home-manager)
|
||||
system.stateVersion = mkDefault "25.11";
|
||||
system.configurationRevision = with inputs; mkIf (self ? rev) self.rev;
|
||||
|
||||
boot = {
|
||||
kernelPackages = mkDefault pkgs.linuxPackages_latest;
|
||||
kernelParams = [ "pcie_aspm.policy=performance" ];
|
||||
};
|
||||
boot.kernelPackages = mkDefault pkgs.linuxPackages_latest;
|
||||
|
||||
time.timeZone = mkDefault "America/Los_Angeles";
|
||||
|
||||
i18n.defaultLocale = mkDefault "en_US.UTF-8";
|
||||
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
];
|
||||
# git is needed for flakes, yet, isn't in `environment.corePackages`
|
||||
environment.systemPackages = with pkgs; [ git ];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue