From 2445273822391ca41cf8376973dce31350d34511 Mon Sep 17 00:00:00 2001 From: Seven Of Aces Date: Sun, 4 Aug 2024 08:43:03 -0700 Subject: [PATCH] add hostname --- flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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