add hostname

This commit is contained in:
Mrrp 2024-08-04 08:43:03 -07:00
parent f83ace1683
commit 2445273822

View file

@ -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
];
};
};
};
}