diff options
author | lassulus <lassulus@lassul.us> | 2017-07-23 21:10:50 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-07-23 21:39:31 +0200 |
commit | 8d34735c3099648fb3444d218c78fb3fb7612c46 (patch) | |
tree | 5d47da9bdb11a35372cc61ae257b726101f84775 /lass/2configs/hw/x220.nix | |
parent | 1bf9e1e1eea95ea9efeb72a48e19a6df11881a7f (diff) |
lass: cleanup
Diffstat (limited to 'lass/2configs/hw/x220.nix')
-rw-r--r-- | lass/2configs/hw/x220.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lass/2configs/hw/x220.nix b/lass/2configs/hw/x220.nix new file mode 100644 index 000000000..bf7decc40 --- /dev/null +++ b/lass/2configs/hw/x220.nix @@ -0,0 +1,32 @@ +{ ... }: +{ + imports = [ + <stockholm/krebs/2configs/hw/x220.nix> + ]; + + boot = { + initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda3"; } ]; + initrd.luks.cryptoModules = [ "aes" "sha512" "sha1" "xts" ]; + initrd.availableKernelModules = [ "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ]; + }; + fileSystems = { + "/" = { + device = "/dev/mapper/pool-root"; + fsType = "btrfs"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; + }; + "/boot" = { + device = "/dev/sda2"; + }; + "/home" = { + device = "/dev/mapper/pool-home"; + fsType = "btrfs"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; + }; + "/tmp" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = ["nosuid" "nodev" "noatime"]; + }; + }; +} |