remove hardeware file

This commit is contained in:
jopejoe1 2025-04-04 20:20:55 +02:00
parent a0ccf9584d
commit 9a8fc8fffa
2 changed files with 11 additions and 23 deletions

View file

@ -9,7 +9,6 @@
{
imports = [
./hardware.nix
./disk.nix
#nixos-hardware.nixosModules.framework-16-7040-amd
self.inputs.srvos.nixosModules.desktop
@ -118,4 +117,15 @@
enable = true;
interface = "wlp5s0";
};
fileSystems."/home/jopejoe1/Public/games" = {
device = "/dev/sda";
fsType = "bcachefs";
options = [
"compression=zstd"
"nofail"
];
};
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}