diff --git a/systems/common.nix b/modules/common.nix similarity index 100% rename from systems/common.nix rename to modules/common.nix diff --git a/systems/desktop.nix b/modules/desktop.nix similarity index 100% rename from systems/desktop.nix rename to modules/desktop.nix diff --git a/systems/default.nix b/systems/default.nix index ad06292..f1ba33a 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -23,15 +23,15 @@ mapNixOS = lib.mapAttrs (toSystem inputs.nixpkgs.lib.nixosSystem); nixos = with inputs; [ - ./common.nix + ../modules/common.nix ragenix.nixosModules.default + home-manager.nixosModules.home-manager ]; desktop = with inputs; [ - ./desktop.nix + ../modules/desktop.nix lanzaboote.nixosModules.lanzaboote - home-manager.nixosModules.home-manager catppuccin.nixosModules.catppuccin ] ++ nixos;