dots/configuration/modules/system.nix
2025-09-22 10:19:00 +02:00

10 lines
253 B
Nix

{name, ...}: {
networking.hostName = "max-${name}";
system = {
stateVersion = "25.11";
activationScripts.cleanBackups = ''
echo "Removing .backup_nix files..."
find /home/maxag -type f -name "*.backup_nix" -delete
'';
};
}