diff --git a/flake.nix b/flake.nix index c40cb99..ed1d5f3 100644 --- a/flake.nix +++ b/flake.nix @@ -62,6 +62,13 @@ ./hosts/blackstar/nixos/configuration.nix ]; }; + rogue = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs outputs;}; + modules = [ + # > Our main nixos configuration file < + ./hosts/rogue/nixos/configuration.nix + ]; + }; }; # Standalone home-manager configuration entrypoint @@ -76,6 +83,14 @@ ./hosts/blackstar/home-manager/home.nix ]; }; + "aces@rogue" = home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance + extraSpecialArgs = {inherit inputs outputs;}; + modules = [ + # > Our main home-manager configuration file < + ./hosts/rogue/home-manager/home.nix + ]; + }; }; }; } \ No newline at end of file