update default imports

This commit is contained in:
goeranh 2026-02-27 20:28:08 +01:00
parent 5c82694beb
commit 28464391dc
No known key found for this signature in database
2 changed files with 29 additions and 13 deletions

View file

@ -25,10 +25,6 @@ let
in
{
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
networking.nameservers = [
"9.9.9.9"
"1.1.1.1"
@ -36,7 +32,21 @@ in
boot.kernelPackages = pkgs.linuxPackages_latest;
nix.settings.trusted-users = [ "administration" ];
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [ "administration" ];
auto-optimise-store = true;
};
optimise.automatic = true;
gc = {
automatic = true;
options = "--delete-older-than 42d";
};
};
networking.domain = "htw.stura-dresden.de";