2023-01-15 18:56:16 +01:00
|
|
|
|
# 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, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
2023-07-28 17:36:50 +02:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" ];
|
2023-06-09 18:28:17 +02:00
|
|
|
|
boot.initrd.kernelModules = [ "i915" ];
|
2023-01-15 18:56:16 +01:00
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "none";
|
|
|
|
|
fsType = "tmpfs";
|
2023-06-09 22:21:52 +02:00
|
|
|
|
options = [ "defaults" "size=8G" "mode=755" ];
|
2023-06-09 18:26:35 +02:00
|
|
|
|
};
|
2023-06-01 19:22:13 +02:00
|
|
|
|
|
2023-01-15 18:56:16 +01:00
|
|
|
|
fileSystems."/boot" =
|
2023-07-28 17:36:50 +02:00
|
|
|
|
{ device = "/dev/disk/by-uuid/F1C1-0271";
|
2023-01-15 18:56:16 +01:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-28 20:14:41 +02:00
|
|
|
|
# system
|
2023-07-28 17:36:50 +02:00
|
|
|
|
boot.initrd.luks.devices."crypt-system".device = "/dev/disk/by-uuid/2dc54953-958b-4c5a-8454-21c0b1d16222";
|
|
|
|
|
boot.initrd.luks.devices."crypt-system".allowDiscards = true;
|
|
|
|
|
boot.initrd.luks.devices."crypt-system".bypassWorkqueues = true;
|
2023-06-09 18:26:35 +02:00
|
|
|
|
|
2023-07-28 20:14:41 +02:00
|
|
|
|
# projects
|
|
|
|
|
boot.initrd.luks.devices."crypt-projects".device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S69ENF0R846614L";
|
|
|
|
|
boot.initrd.luks.devices."crypt-projects".allowDiscards = true;
|
|
|
|
|
boot.initrd.luks.devices."crypt-projects".bypassWorkqueues = true;
|
|
|
|
|
|
|
|
|
|
# vms
|
|
|
|
|
boot.initrd.luks.devices."crypt-vms".device = "/dev/disk/by-id/nvme-CT2000P5PSSD8_213330E4ED05";
|
|
|
|
|
boot.initrd.luks.devices."crypt-vms".allowDiscards = true;
|
|
|
|
|
boot.initrd.luks.devices."crypt-vms".bypassWorkqueues = true;
|
|
|
|
|
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fileSystems."/nix" =
|
2023-07-28 17:36:50 +02:00
|
|
|
|
{ device = "/dev/mapper/crypt-system";
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fsType = "btrfs";
|
2023-07-28 17:36:50 +02:00
|
|
|
|
options = [ "subvol=nix" "noatime" "compress=zstd" ];
|
2023-06-09 18:26:35 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/data" =
|
2023-07-28 17:36:50 +02:00
|
|
|
|
{ device = "/dev/mapper/crypt-system";
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fsType = "btrfs";
|
2023-07-28 17:36:50 +02:00
|
|
|
|
options = [ "subvol=data" "noatime" "compress=zstd" ];
|
2023-06-09 18:26:35 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
2023-07-29 16:11:55 +02:00
|
|
|
|
{
|
|
|
|
|
depends = [ "/data" ];
|
|
|
|
|
device = "/data/home";
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fsType = "none";
|
|
|
|
|
options = [ "bind" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/root" =
|
2023-07-29 16:11:55 +02:00
|
|
|
|
{
|
|
|
|
|
depends = [ "/data" ];
|
|
|
|
|
device = "/data/root";
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fsType = "none";
|
|
|
|
|
options = [ "bind" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/etc/nixos" =
|
2023-07-29 16:11:55 +02:00
|
|
|
|
{
|
|
|
|
|
depends = [ "/data" ];
|
|
|
|
|
device = "/data/nixos/neko";
|
2023-06-09 18:26:35 +02:00
|
|
|
|
fsType = "none";
|
|
|
|
|
options = [ "bind" ];
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-28 20:14:41 +02:00
|
|
|
|
fileSystems."/home/cullmann/projects" =
|
2023-07-29 16:11:55 +02:00
|
|
|
|
{
|
|
|
|
|
depends = [ "/home" ];
|
|
|
|
|
device = "/dev/mapper/crypt-projects";
|
2023-07-28 20:14:41 +02:00
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "noatime" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home/cullmann/vms" =
|
2023-07-29 16:11:55 +02:00
|
|
|
|
{
|
|
|
|
|
depends = [ "/home" ];
|
|
|
|
|
device = "/dev/mapper/crypt-vms";
|
2023-07-28 20:14:41 +02:00
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "noatime" ];
|
|
|
|
|
};
|
|
|
|
|
|
2023-01-15 18:56:16 +01:00
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|