reorganization

This commit is contained in:
Reid 2026-04-22 23:21:34 -07:00
parent f1cd1e461f
commit f2c9e4d5b7
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
12 changed files with 140 additions and 30 deletions

View file

@ -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 ];
}