add grymforge
This commit is contained in:
parent
c5d2fbe031
commit
980f180b88
9 changed files with 423 additions and 1 deletions
22
flake.nix
22
flake.nix
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue