diff options
author | Felix Richter <makefu@syntax-fehler.de> | 2015-08-16 23:59:26 +0200 |
---|---|---|
committer | Felix Richter <makefu@syntax-fehler.de> | 2015-08-16 23:59:26 +0200 |
commit | 7d030a2c6859bb453dc6ab5ae2ea15714048cd8f (patch) | |
tree | 39abe458afbf529af72fc17acf1c212492253e2c /makefu/2configs/sda-crypto-root.nix | |
parent | 407c1592254e7e27a0caa588b945c5de966e46ba (diff) |
makefu: add allow-discards
Diffstat (limited to 'makefu/2configs/sda-crypto-root.nix')
-rw-r--r-- | makefu/2configs/sda-crypto-root.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/makefu/2configs/sda-crypto-root.nix b/makefu/2configs/sda-crypto-root.nix index 0d979a0b8..54db87547 100644 --- a/makefu/2configs/sda-crypto-root.nix +++ b/makefu/2configs/sda-crypto-root.nix @@ -10,7 +10,7 @@ with lib; loader.grub.version =2; loader.grub.device = "/dev/sda"; - initrd.luks.devices = [ { name = "luksroot"; device= "/dev/sda2";}]; + initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda2"; allowDiscards=true; }]; initrd.luks.cryptoModules = ["aes" "sha512" "sha1" "xts" ]; initrd.availableKernelModules = ["xhci_hcd" "ehci_pci" "ahci" "usb_storage" ]; }; @@ -18,10 +18,12 @@ with lib; "/" = { device = "/dev/mapper/luksroot"; fsType = "ext4"; + options="defaults,discard"; }; "/boot" = { device = "/dev/disk/by-label/nixboot"; fsType = "ext4"; + options="defaults,discard"; }; }; } |