2021-03-15 12:06:30 +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, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2021-03-30 11:29:52 +02:00
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2021-03-15 12:06:30 +01:00
|
|
|
|
|
2021-03-30 11:29:52 +02:00
|
|
|
|
boot.initrd.availableKernelModules =
|
|
|
|
|
[ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
2021-03-15 12:06:30 +01:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2021-03-30 11:29:52 +02:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "system/stateful/root";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" = {
|
|
|
|
|
device = "system/ephemeral/nix";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/tmp" = {
|
|
|
|
|
device = "system/ephemeral/tmp";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" = {
|
|
|
|
|
device = "system/stateful/home";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/B314-22E9";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault" = {
|
|
|
|
|
device = "vault";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/samba" = {
|
|
|
|
|
device = "vault/samba";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/VMs" = {
|
|
|
|
|
device = "vault/VMs";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/backups" = {
|
|
|
|
|
device = "vault/backups";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/nextcloud" = {
|
|
|
|
|
device = "vault/nextcloud";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/backups/databases" = {
|
|
|
|
|
device = "vault/backups/databases";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/sica" = {
|
|
|
|
|
device = "vault/sica";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/code" = {
|
|
|
|
|
device = "vault/code";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/vault/config" = {
|
|
|
|
|
device = "vault/config";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
2021-03-29 19:38:26 +02:00
|
|
|
|
|
2021-03-15 12:06:30 +01:00
|
|
|
|
swapDevices =
|
2021-03-30 11:29:52 +02:00
|
|
|
|
[{ device = "/dev/disk/by-uuid/8262a243-b6aa-49e8-bf72-d2b85864d1c0"; }];
|
2021-03-15 12:06:30 +01:00
|
|
|
|
|
|
|
|
|
}
|