diff --git a/dendritic/modules/features/home-manager.nix b/dendritic/modules/features/home-manager.nix index 7d77f57..8f116e9 100644 --- a/dendritic/modules/features/home-manager.nix +++ b/dendritic/modules/features/home-manager.nix @@ -11,10 +11,5 @@ useGlobalPkgs = true; useUserPackages = true; }; - - home = { - - stateVersion = "25.11"; - }; }; } diff --git a/dendritic/modules/hosts/framework/configuration.nix b/dendritic/modules/hosts/framework/configuration.nix index 1d39e85..5c33297 100644 --- a/dendritic/modules/hosts/framework/configuration.nix +++ b/dendritic/modules/hosts/framework/configuration.nix @@ -4,13 +4,6 @@ ... }: { - flake.nixosConfigurations.framework = inputs.nixpkgs.lib.nixosSystem { - modules = [ - self.nixosModules.frameworkHardware - self.nixosModules.homeManager - ]; - }; - # The configuration.nix for system config flake.nixosModules.frameworkModule = { pkgs, ... }: { environment = { diff --git a/dendritic/modules/hosts/framework/default.nix b/dendritic/modules/hosts/framework/default.nix index b421893..fe06448 100644 --- a/dendritic/modules/hosts/framework/default.nix +++ b/dendritic/modules/hosts/framework/default.nix @@ -3,9 +3,12 @@ inputs, ... }: { + flake.nixosConfigurations.framework = inputs.nixpkgs.lib.nixosSystem { modules = [ + self.nixosModules.frameworkHardware self.nixosModules.frameworkModule + self.nixosModules.homeManager ]; }; }