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

View file

@ -1,22 +0,0 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{
config,
lib,
modulesPath,
...
}:
{
fileSystems."/home/jopejoe1/Public/games" = {
device = "/dev/sda";
fsType = "bcachefs";
options = [
"compression=zstd"
"nofail"
];
};
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}