summaryrefslogtreecommitdiffstats
path: root/shared/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-05-25 23:21:20 +0200
committermakefu <github@syntax-fehler.de>2017-05-25 23:21:20 +0200
commit5bef07d2c0ba2e765760807ddcf1e56f9d20da44 (patch)
treed72f8a9b7ab7894c3b0e62bb954da5db0be1439e /shared/2configs
parent7b059079e657301732b9d539f2c1df4d7b4d32ae (diff)
s: enable save-diskspace
Diffstat (limited to 'shared/2configs')
-rw-r--r--shared/2configs/default.nix2
-rw-r--r--shared/2configs/save-diskspace.nix11
2 files changed, 12 insertions, 1 deletions
diff --git a/shared/2configs/default.nix b/shared/2configs/default.nix
index e7f600c..894f8a9 100644
--- a/shared/2configs/default.nix
+++ b/shared/2configs/default.nix
@@ -11,7 +11,7 @@ with import <stockholm/lib>;
nixos-config.symlink = "stockholm/${user.name}/1systems/${host.name}.nix";
nixpkgs.git = {
url = https://github.com/NixOS/nixpkgs;
- ref = "22da5d02466ffe465735986d705675982f3646a0"; # nixos-17.03 @ 2017-05-13
+ ref = "58e227052d40021d82d015f3f8da011ae54ea430"; # nixos-17.03 @ 2017-05-24
};
secrets.file =
if getEnv "dummy_secrets" == "true"
diff --git a/shared/2configs/save-diskspace.nix b/shared/2configs/save-diskspace.nix
new file mode 100644
index 0000000..ab074c7
--- /dev/null
+++ b/shared/2configs/save-diskspace.nix
@@ -0,0 +1,11 @@
+{lib, ... }:
+# TODO: do not check out nixpkgs master but fetch revision from github
+{
+ environment.noXlibs = true;
+ nix.gc.automatic = true;
+ nix.gc.dates = lib.mkDefault "03:10";
+ programs.info.enable = false;
+ programs.man.enable = false;
+ services.journald.extraConfig = "SystemMaxUse=50M";
+ services.nixosManual.enable = false;
+}