Compare commits
2 commits
74cbca8d25
...
0f33bb320b
Author | SHA1 | Date | |
---|---|---|---|
0f33bb320b | |||
b40c4322a7 |
2 changed files with 7 additions and 6 deletions
|
@ -17,34 +17,34 @@
|
|||
|
||||
boot.initrd.luks.devices = {
|
||||
crypted-nixos = {
|
||||
device = "/dev/disk/by-uuid/401036ff-8ad8-4738-a249-85391dac0430";
|
||||
device = "/dev/disk/by-uuid/7531aa41-6b40-43a0-b3a8-a24d99b9de27";
|
||||
preLVM = true;
|
||||
};
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-uuid/663f1c4a-dce6-48b2-b8e2-a602e812c49b";
|
||||
device = "/dev/disk/by-uuid/965a9b02-e6fb-49b6-aab6-0a1200d558b5";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/3F42-7C9B";
|
||||
device = "/dev/disk/by-uuid/9E6B-3E0D";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
"/nix" = {
|
||||
device = "/dev/disk/by-uuid/148a5295-396b-495b-b46e-1fa4e99cf9d0";
|
||||
device = "/dev/disk/by-uuid/4fe61702-77f9-4321-a107-36b2ac7dc0fb";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
"/home" = {
|
||||
device = "/dev/disk/by-uuid/16b6bd32-465c-4a42-a082-df42d912e5e5";
|
||||
device = "/dev/disk/by-uuid/564c2d90-3501-4e5d-9c1f-5833af5b65c1";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [ { device = "/dev/disk/by-uuid/0bc27219-00dd-4ae9-b946-ab65a68cbdf1"; } ];
|
||||
swapDevices = [ { device = "/dev/disk/by-uuid/d4a1f04b-02a0-403a-ad95-599e8c52bc9b"; } ];
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
nix.settings.system-features = [
|
||||
"kvm"
|
||||
"big-parallel"
|
||||
];
|
||||
|
||||
services.openvpn.servers = {
|
||||
|
|
Loading…
Add table
Reference in a new issue