summaryrefslogtreecommitdiffstats
path: root/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-10-16 22:58:54 +0200
committermakefu <github@syntax-fehler.de>2015-10-16 22:58:54 +0200
commitb765574fce3e9288619637d75dcb82a82d796854 (patch)
tree8a936ec7d714c7c5a5c2bb42cf40794e7b50f550 /2configs
parente51c70b5aeac7a30f3528bf1714fd780b944973b (diff)
m 2 fs/sda-crypto-root-home: resolve TODO, import crypto-root, add device
Diffstat (limited to '2configs')
-rw-r--r--2configs/fs/sda-crypto-root-home.nix23
1 files changed, 4 insertions, 19 deletions
diff --git a/2configs/fs/sda-crypto-root-home.nix b/2configs/fs/sda-crypto-root-home.nix
index 3821c7504..c2075a665 100644
--- a/2configs/fs/sda-crypto-root-home.nix
+++ b/2configs/fs/sda-crypto-root-home.nix
@@ -9,31 +9,16 @@
with lib;
{
- boot = {
- loader.grub.enable =true;
- loader.grub.version =2;
- loader.grub.device = "/dev/sda";
- initrd.luks.devices = [ { name = "main"; device = "/dev/sda2"; allowDiscards=true; }];
- initrd.luks.cryptoModules = ["aes" "sha512" "sha1" "xts" ];
- initrd.availableKernelModules = ["xhci_hcd" "ehci_pci" "ahci" "usb_storage" ];
- };
+ imports = [
+ ./sda-crypto-root.nix
+ ];
+
fileSystems = {
- "/" = {
- device = "/dev/mapper/main-root";
- fsType = "ext4";
- options="defaults,discard";
- };
- # TODO: just import sda-crypto-root, add this device
"/home" = {
device = "/dev/mapper/main-home";
fsType = "ext4";
options="defaults,discard";
};
- "/boot" = {
- device = "/dev/disk/by-label/nixboot";
- fsType = "ext4";
- options="defaults,discard";
- };
};
}