diff --git a/aspects/users/user_io.nix b/aspects/users/user_io.nix index c956b1c..a8fa675 100644 --- a/aspects/users/user_io.nix +++ b/aspects/users/user_io.nix @@ -1,7 +1,7 @@ { inputs, lib, ... }: { - flake."user@io" = inputs.home-manager.lib.homeManagerConfiguration { + flake.homeConfigurations."user@io" = { pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux; extraSpecialArgs = { inherit inputs; @@ -24,7 +24,7 @@ cli desktop - # other aspect + # other aspects stylix niri ]); diff --git a/aspects/users/user_rotterdam.nix b/aspects/users/user_rotterdam.nix index 56b2dc1..36f512d 100644 --- a/aspects/users/user_rotterdam.nix +++ b/aspects/users/user_rotterdam.nix @@ -1,35 +1,33 @@ { inputs, lib, ... }: { - flake.homeConfigurations = { - "user@rotterdam" = inputs.home-manager.lib.homeManagerConfiguration { - pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux; - extraSpecialArgs = { - inherit inputs; - hostname = "rotterdam"; - }; - modules = [ - { nixpkgs.overlays = [ inputs.self.overlays.default ]; } - { - home = { - username = "user"; - homeDirectory = "/home/user"; - stateVersion = "22.05"; - }; - } - ((inputs.import-tree.initFilter (p: lib.hasSuffix ".nix" p)) ./_user) - ] - ++ (with inputs.self.modules.homeManager; [ - # system aspects - base - cli - desktop - gaming - - # other aspects - stylix - niri - ]); + flake.homeConfigurations."user@rotterdam" = { + pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux; + extraSpecialArgs = { + inherit inputs; + hostname = "rotterdam"; }; + modules = [ + { nixpkgs.overlays = [ inputs.self.overlays.default ]; } + { + home = { + username = "user"; + homeDirectory = "/home/user"; + stateVersion = "22.05"; + }; + } + ((inputs.import-tree.initFilter (p: lib.hasSuffix ".nix" p)) ./_user) + ] + ++ (with inputs.self.modules.homeManager; [ + # system aspects + base + cli + desktop + gaming + + # other aspects + stylix + niri + ]); }; }