updates including openssl

This commit is contained in:
2025-01-10 00:15:52 -05:00
parent be17ab59ed
commit cd77593585
3 changed files with 72 additions and 57 deletions

View File

@@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "thunderbolt" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "thunderbolt" "usbhid" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
@@ -18,6 +18,31 @@
fsType = "ext4";
};
fileSystems."/nix/store" =
{ device = "/dev/disk/by-uuid/77fb07a2-68f7-4f4f-a4a0-d3bcdc83b98a";
fsType = "btrfs";
};
fileSystems."/var/lib" =
{ device = "/dev/disk/by-uuid/05ccb595-f73e-4a00-a3f6-1fb537c9b2a3";
fsType = "btrfs";
};
fileSystems."/data/charlie" =
{ device = "/dev/disk/by-uuid/cb29be2a-a6e8-4581-98fd-1648de77e9c1";
fsType = "ext4";
};
fileSystems."/data/bravo" =
{ device = "/dev/disk/by-uuid/1259b0aa-3b6d-43c3-a45a-1073e82fb554";
fsType = "ext4";
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/23e4cffe-4f57-486b-9a9f-24e715838a4d";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/EC54-3580";
fsType = "vfat";
@@ -29,26 +54,6 @@
fsType = "ext4";
};
fileSystems."/data/bravo" =
{ device = "/dev/disk/by-uuid/1259b0aa-3b6d-43c3-a45a-1073e82fb554";
fsType = "ext4";
};
fileSystems."/data/charlie" =
{ device = "/dev/disk/by-uuid/cb29be2a-a6e8-4581-98fd-1648de77e9c1";
fsType = "ext4";
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/23e4cffe-4f57-486b-9a9f-24e715838a4d";
fsType = "ext4";
};
fileSystems."/nix/store" =
{ device = "/dev/disk/by-uuid/77fb07a2-68f7-4f4f-a4a0-d3bcdc83b98a";
fsType = "btrfs";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/25377ac7-4a7a-4648-abe1-f65990145c54"; }
];
@@ -59,6 +64,7 @@
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp15s0u1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp8s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;