diff options
author | lassulus <lass@aidsballs.de> | 2016-02-27 17:28:46 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-02-27 17:28:46 +0100 |
commit | 024de57e7b1918a617685b65a0c5c45ee4592e47 (patch) | |
tree | 2f0a9168b4569650619f334b597733ae10216b66 /tv/1systems/xu.nix | |
parent | acd5d7cceeeb96c182a963ba0c564821a36c8938 (diff) | |
parent | 8c859335a879c515a1415bc8b15b5cb7eb519efc (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'tv/1systems/xu.nix')
-rw-r--r-- | tv/1systems/xu.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tv/1systems/xu.nix b/tv/1systems/xu.nix index c6a69a85a..46fb59ff3 100644 --- a/tv/1systems/xu.nix +++ b/tv/1systems/xu.nix @@ -15,6 +15,7 @@ with config.krebs.lib; ../2configs/nginx-public_html.nix ../2configs/pulse.nix ../2configs/retiolum.nix + ../2configs/wu-binary-cache/client.nix ../2configs/xserver ../2configs/xu-qemu0.nix { @@ -137,12 +138,12 @@ with config.krebs.lib; "/" = { device = "/dev/mapper/xuvga-root"; fsType = "btrfs"; - options = "defaults,noatime,ssd,compress=lzo"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; }; "/home" = { device = "/dev/mapper/xuvga-home"; fsType = "btrfs"; - options = "defaults,noatime,ssd,compress=lzo"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; }; "/boot" = { device = "/dev/sda1"; @@ -150,7 +151,7 @@ with config.krebs.lib; "/tmp" = { device = "tmpfs"; fsType = "tmpfs"; - options = "nosuid,nodev,noatime"; + options = ["nosuid" "nodev" "noatime"]; }; }; |