nichts/nyx/hosts/icarus/system.nix
2024-04-09 23:11:33 +02:00

25 lines
552 B
Nix

{
config = {
fileSystems = {
"/".options = ["compress=zstd" "noatime"];
"/home".options = ["compress=zstd"];
"/persist".options = ["compress=zstd"];
"/var/log".options = ["compress=zstd"];
"/nix".options = ["compress=zstd" "noatime"];
};
hardware = {
enableRedistributableFirmware = true;
enableAllFirmware = true;
};
boot = {
kernelModules = ["iwlwifi"];
kernelParams = [
"i915.enable_fbc=1"
"i915.enable_psr=2"
"nohibernate"
];
};
};
}