diff options
author | lassulus <lassulus@lassul.us> | 2017-08-25 23:45:03 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-08-25 23:45:03 +0200 |
commit | c63b86d9aff44c065cdcf5a486ee91b7565cd567 (patch) | |
tree | ce81881ceb28b6f65044ebe38a26cfef0d021b86 | |
parent | 7031d9d2d132c750f6607b57801057b2637332d1 (diff) |
l shodan.r: add /home lv
-rw-r--r-- | lass/1systems/shodan/config.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lass/1systems/shodan/config.nix b/lass/1systems/shodan/config.nix index b6d49d6e4..ef015aebc 100644 --- a/lass/1systems/shodan/config.nix +++ b/lass/1systems/shodan/config.nix @@ -41,7 +41,11 @@ with import <stockholm/lib>; "/boot" = { device = "/dev/sda1"; }; - + "/home" = { + device = "/dev/mapper/pool-home"; + fsType = "btrfs"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; + }; "/tmp" = { device = "tmpfs"; fsType = "tmpfs"; |