This commit is contained in:
Martin Pander
2026-02-06 16:08:01 +01:00
parent 0e00b8811a
commit f54655f3ae
2 changed files with 14 additions and 8 deletions

View File

@@ -41,6 +41,7 @@
users.users.pan = {
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" ];
uid = 1000;
shell = pkgs.zsh;
};
@@ -52,9 +53,19 @@
nixpkgs.config.allowUnfree = true;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
# Automatic Store Optimization
nix.settings.auto-optimise-store = true;
environment.systemPackages = with pkgs; [
git
wget
curl
vim
];
}