1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Set stateversion per machine

This commit is contained in:
Stefan Ellmauthaler 2022-07-27 16:32:04 +02:00
parent 5125d33248
commit ff50297c44
Failed to extract signature
3 changed files with 4 additions and 4 deletions

View File

@ -59,4 +59,6 @@
plymouth.enable = true; plymouth.enable = true;
}; };
system.stateVersion = "21.05";
} }

View File

@ -63,4 +63,6 @@
plymouth.enable = true; plymouth.enable = true;
}; };
services.xserver.desktopManager.wallpaper.mode = "fill"; services.xserver.desktopManager.wallpaper.mode = "fill";
system.stateVersion = "21.05";
} }

View File

@ -1,4 +0,0 @@
{ config, lib, pkgs, ...}:
with lib;{
system.stateVersion = mkDefault "21.05";
}