Compare commits

..

No commits in common. "1de794889cf69f9c78d3b6533d7f983168f545ca" and "fa1ec477784169fe381c2cb4fd13870bcfeb129a" have entirely different histories.

2 changed files with 5 additions and 8 deletions

View File

@ -98,10 +98,7 @@
}; };
# Specify secrets # Specify secrets
age = { age.secrets.wireguard.file = secrets/wireguard.age;
secrets.wireguard.file = secrets/wireguard.age;
sshKeyPaths = ["/home/coolneng/.ssh/id_ed25519"];
};
# Import other configuration modules # Import other configuration modules
imports = [ imports = [

View File

@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
@ -33,7 +33,7 @@
fsType = "autofs"; fsType = "autofs";
}; };
fileSystems."/home/coolneng" = fileSystems."/home" =
{ device = "syscea/stateful/home"; { device = "syscea/stateful/home";
fsType = "zfs"; fsType = "zfs";
}; };
@ -49,12 +49,12 @@
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/4851-6B40"; { device = "/dev/disk/by-uuid/4AED-6F54";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/c8e252ac-941f-4290-8212-42c1bc2bff69"; } [ { device = "/dev/disk/by-uuid/3403dce5-dfd2-42bc-9b38-58995c3fb93a"; }
]; ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";