mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-20 03:34:07 +02:00
remove hardeware file
This commit is contained in:
parent
a0ccf9584d
commit
9a8fc8fffa
2 changed files with 11 additions and 23 deletions
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
|
@ -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";
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue