From ddc085ff62cb6c4305ac59d7cac3171c6d825202 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 27 Feb 2016 15:13:10 +0100 Subject: tv wu-binary-cache: init --- tv/1systems/wu.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'tv/1systems') diff --git a/tv/1systems/wu.nix b/tv/1systems/wu.nix index 8c363d9..d64deaf 100644 --- a/tv/1systems/wu.nix +++ b/tv/1systems/wu.nix @@ -16,6 +16,7 @@ with config.krebs.lib; ../2configs/nginx-public_html.nix ../2configs/pulse.nix ../2configs/retiolum.nix + ../2configs/wu-binary-cache ../2configs/xserver { environment.systemPackages = with pkgs; [ -- cgit v1.2.3 From e65db55367026603ef6e116620a860cb9509c513 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 27 Feb 2016 15:24:06 +0100 Subject: nomic,xu: use wu-binary-cache --- tv/1systems/nomic.nix | 1 + tv/1systems/xu.nix | 1 + 2 files changed, 2 insertions(+) (limited to 'tv/1systems') diff --git a/tv/1systems/nomic.nix b/tv/1systems/nomic.nix index 4532069..fa9c908 100644 --- a/tv/1systems/nomic.nix +++ b/tv/1systems/nomic.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 ]; diff --git a/tv/1systems/xu.nix b/tv/1systems/xu.nix index c6a69a8..1553106 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 { -- cgit v1.2.3 From 97447915baf00f502e46d9842d9ca75682adb33e Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 27 Feb 2016 15:39:53 +0100 Subject: tv: mute random new filesystem option deprecation warning --- tv/1systems/wu.nix | 6 +++--- tv/1systems/xu.nix | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tv/1systems') diff --git a/tv/1systems/wu.nix b/tv/1systems/wu.nix index d64deaf..0bf2421 100644 --- a/tv/1systems/wu.nix +++ b/tv/1systems/wu.nix @@ -127,12 +127,12 @@ with config.krebs.lib; "/" = { device = "/dev/mapper/vg840-wuroot"; fsType = "btrfs"; - options = "defaults,noatime,ssd,compress=lzo"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; }; "/home" = { device = "/dev/mapper/home"; fsType = "btrfs"; - options = "defaults,noatime,ssd,compress=lzo"; + options = ["defaults" "noatime" "ssd" "compress=lzo"]; }; "/boot" = { device = "/dev/sda1"; @@ -140,7 +140,7 @@ with config.krebs.lib; "/tmp" = { device = "tmpfs"; fsType = "tmpfs"; - options = "nosuid,nodev,noatime"; + options = ["nosuid" "nodev" "noatime"]; }; }; diff --git a/tv/1systems/xu.nix b/tv/1systems/xu.nix index 1553106..46fb59f 100644 --- a/tv/1systems/xu.nix +++ b/tv/1systems/xu.nix @@ -138,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"; @@ -151,7 +151,7 @@ with config.krebs.lib; "/tmp" = { device = "tmpfs"; fsType = "tmpfs"; - options = "nosuid,nodev,noatime"; + options = ["nosuid" "nodev" "noatime"]; }; }; -- cgit v1.2.3