s: enable save-diskspace
This commit is contained in:
parent
0c92dd719a
commit
e086914ce0
@ -15,6 +15,7 @@ in
|
|||||||
../2configs/shared-buildbot.nix
|
../2configs/shared-buildbot.nix
|
||||||
../2configs/share-shack.nix
|
../2configs/share-shack.nix
|
||||||
../2configs/central-stats-client.nix
|
../2configs/central-stats-client.nix
|
||||||
|
../2configs/save-diskspace.nix
|
||||||
];
|
];
|
||||||
# use your own binary cache, fallback use cache.nixos.org (which is used by
|
# use your own binary cache, fallback use cache.nixos.org (which is used by
|
||||||
# apt-cacher-ng in first place)
|
# apt-cacher-ng in first place)
|
||||||
@ -86,4 +87,5 @@ in
|
|||||||
];
|
];
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
sound.enable = false;
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ with import <stockholm/lib>;
|
|||||||
nixos-config.symlink = "stockholm/${user.name}/1systems/${host.name}.nix";
|
nixos-config.symlink = "stockholm/${user.name}/1systems/${host.name}.nix";
|
||||||
nixpkgs.git = {
|
nixpkgs.git = {
|
||||||
url = https://github.com/NixOS/nixpkgs;
|
url = https://github.com/NixOS/nixpkgs;
|
||||||
ref = "22da5d02466ffe465735986d705675982f3646a0"; # nixos-17.03 @ 2017-05-13
|
ref = "58e227052d40021d82d015f3f8da011ae54ea430"; # nixos-17.03 @ 2017-05-24
|
||||||
};
|
};
|
||||||
secrets.file =
|
secrets.file =
|
||||||
if getEnv "dummy_secrets" == "true"
|
if getEnv "dummy_secrets" == "true"
|
||||||
|
11
shared/2configs/save-diskspace.nix
Normal file
11
shared/2configs/save-diskspace.nix
Normal file
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user