add grymforge

This commit is contained in:
gwg313 2024-02-01 00:03:16 -05:00
parent c5d2fbe031
commit 980f180b88
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
9 changed files with 423 additions and 1 deletions

View file

@ -117,6 +117,16 @@
};
};
nixosConfigurations = {
grymforge = nixpkgs.lib.nixosSystem {
specialArgs = {inherit user inputs outputs;};
modules = [
# > Our main nixos configuration file <
./hosts/grymforge/configuration.nix
];
};
};
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = {
@ -131,6 +141,18 @@
};
};
homeConfigurations = {
"gwg313@grymforge" = 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 <
./home-manager/machines/grymforge.nix
inputs.stylix.homeManagerModules.stylix
];
};
};
homeConfigurations = {
"gwg313@dorino" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance