Update configuration.nix

This commit is contained in:
ska
2026-01-03 00:24:21 +00:00
parent 0ca1f5aa32
commit 9bbe40a9c9

View File

@@ -101,22 +101,6 @@
LC_TIME = "de_DE.UTF-8";
};
############################################################
# GARBAGE COLLECTION
############################################################
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
settings = {
auto-optimise-store = true;
};
};
############################################################
# DESKTOP - KDE
############################################################
@@ -208,6 +192,35 @@
RuntimeMaxUse=50M
'';
############################################################
# NIX UPDATES
############################################################
system.autoUpgrade = {
enable = true;
channel = "https://channels.nixos.org/nixos-25.11";
dates = "daily";
allowReboot = false;
};
system.autoUpgrade = {
enable = true;
channel = "https://channels.nixos.org/nixos-unstable";
dates = "daily";
allowReboot = false;
};
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
settings = {
auto-optimise-store = true;
};
};
############################################################
# NIXOS VERSION
############################################################