diff options
author | tv <tv@krebsco.de> | 2020-06-16 20:03:01 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-06-16 20:03:01 +0200 |
commit | 15d1fb2627088149d1f46fc5946e1fc53b8f8d54 (patch) | |
tree | 27d37c1cc642087175c6699093dbd7a421bb5e57 /lass/1systems/morpheus/physical.nix | |
parent | eb60b27e2b89bc92bfccab35bb6937023df3b518 (diff) | |
parent | bde301139df5474a72f79122f81feab1d6387a07 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'lass/1systems/morpheus/physical.nix')
-rw-r--r-- | lass/1systems/morpheus/physical.nix | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lass/1systems/morpheus/physical.nix b/lass/1systems/morpheus/physical.nix new file mode 100644 index 000000000..3fb03cda4 --- /dev/null +++ b/lass/1systems/morpheus/physical.nix @@ -0,0 +1,47 @@ +{ + imports = [ + ./config.nix + <nixpkgs/nixos/modules/installer/scan/not-detected.nix> + ]; + + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; + boot.loader.grub.efiSupport = true; + boot.loader.grub.efiInstallAsRemovable = true; + boot.loader.grub.device = "nodev"; + + networking.hostId = "06442b9a"; + + fileSystems."/" = { + device = "/dev/pool/root"; + fsType = "btrfs"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/1F60-17C6"; + fsType = "vfat"; + }; + + fileSystems."/home" = { + device = "/dev/pool/home"; + fsType = "btrfs"; + }; + + fileSystems."/tmp" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = ["nosuid" "nodev" "noatime"]; + }; + boot.initrd.luks = { + cryptoModules = [ "aes" "sha512" "sha1" "xts" ]; + devices = [{ + name = "luksroot"; + device = "/dev/nvme0n1p3"; + }]; + }; + + services.udev.extraRules = '' + SUBSYSTEM=="net", ATTR{address}=="f8:59:71:a9:05:65", NAME="wl0" + SUBSYSTEM=="net", ATTR{address}=="54:e1:ad:4f:06:83", NAME="et0" + ''; +} |