move state versions to option (mainly for hm state version per device without forcing every device to use hm module)

This commit is contained in:
twoneis 2024-07-11 15:08:00 +02:00
parent 16859b559b
commit fdc6c1945e
9 changed files with 27 additions and 11 deletions

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, lib, ... }: {
{ inputs, pkgs, lib, config, ... }: {
imports = [
./containers
./games
@ -79,4 +79,6 @@
description = "twoneis";
extraGroups = [ "networkmanager" "wheel" ];
};
system.stateVersion = config.stateVersion;
}