# 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, pkgs, ... }: { imports = [ ]; boot.initrd = { availableKernelModules = [ "uhci_hcd" "ehci_pci" "ata_piix" "xhci_pci" "ahci" "pata_marvell" "nvme" "firewire_ohci" "usb_storage" "usbhid" "sd_mod" ]; luks.devices = { raid6 = { device = "/dev/disk/by-uuid/1a552384-4f74-40bf-a5cf-961ea24c339e"; }; ssd-raid1 = { device = "/dev/disk/by-uuid/f348a104-4774-47b3-a241-b7eaca0080e3"; }; ssd-nvme = { device = "/dev/disk/by-uuid/fdd3f054-edee-42d5-aa82-08e3477014f3"; allowDiscards = true; }; }; mdadmConf = '' ARRAY /dev/md/isaac:raid6 metadata=1.2 name=isaac:raid6 UUID=42f7a827:e1c05dfe:7e7977dc:ccf1a569 ARRAY /dev/md1 metadata=1.2 name=localhost:ssd-raid1 UUID=f2e398f9:e2d4d8ce:b1811e05:584bf759 ARRAY /dev/md0 metadata=1.2 name=localhost:boot UUID=a56bdcef:a622dd3a:c6af3832:591a8bb3 ''; }; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/ssd-raid1/root"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/f6b49ce4-536c-4470-ad22-2af5c2b53d61"; fsType = "ext4"; }; fileSystems."/srv/hlidskjalf" = { device = "/dev/raid6/hlidskjalf"; fsType = "ext4"; }; fileSystems."/srv/git" = { device = "/dev/raid6/git"; fsType = "ext4"; }; fileSystems."/home" = { device = "/dev/raid6/home"; fsType = "ext4"; options = [ "defaults" "quota" ]; }; fileSystems."/root" = { device = "/dev/raid6/root"; fsType = "ext4"; }; fileSystems."/srv/media" = { device = "/dev/raid6/media"; fsType = "ext4"; }; fileSystems."/srv/mail" = { device = "/dev/raid6/mail"; fsType = "ext4"; }; fileSystems."/nix/store" = { device = "/dev/ssd-nvme/nix-store"; fsType = "xfs"; }; fileSystems."/var/spool" = { device = "/dev/raid6/spool"; fsType = "xfs"; }; swapDevices = [ { device = "/dev/ssd-raid1/swap"; } ]; nix.maxJobs = lib.mkDefault 8; }