feat: remove module attribute and fix duplicate import

This commit is contained in:
2026-04-26 18:20:15 +02:00
parent dba24ce5f3
commit 2a2b192255
2 changed files with 2 additions and 10 deletions
+1 -8
View File
@@ -1,7 +1,5 @@
{ lib, config, ... }:
{ lib, ... }:
let
nixosModules = config.flake.modules.nixos;
sourceControlScopeType = lib.types.enum [
"personal"
"work"
@@ -177,11 +175,6 @@ let
default = name;
};
module = lib.mkOption {
type = lib.types.deferredModule;
default = nixosModules.${name};
};
stateVersion = lib.mkOption {
type = lib.types.str;
};