cleanup(all): moving all config to hosts folder
This commit is contained in:
@@ -37,9 +37,9 @@
|
||||
# Blender-bin
|
||||
url = "github:edolstra/nix-warez?dir=blender";
|
||||
};
|
||||
nixpkgs-gamescope = {
|
||||
url = "github:Nixos/nixpkgs?rev=8fcb6f1c4948305af52d19f887b89011ee2c080d";
|
||||
};
|
||||
nixpkgs-gamescope = {
|
||||
url = "github:Nixos/nixpkgs?rev=8fcb6f1c4948305af52d19f887b89011ee2c080d";
|
||||
};
|
||||
};
|
||||
outputs =
|
||||
inputs@{ nixpkgs, home-manager, ... }:
|
||||
@@ -59,20 +59,32 @@
|
||||
extraSpecialArgs = {
|
||||
inherit inputs system;
|
||||
};
|
||||
|
||||
# Specify your home configuration modules here, for example,
|
||||
# the path to your home.nix.
|
||||
modules = [ ./home.nix ];
|
||||
|
||||
# Optionally use extraSpecialArgs
|
||||
# to pass through arguments to home.nix
|
||||
modules = [ ./hosts/doloro/home.nix ];
|
||||
};
|
||||
homeConfigurations."doloro-wsl" = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = {
|
||||
inherit inputs system;
|
||||
};
|
||||
modules = [ ./hosts/doloro-wsl/home.nix ];
|
||||
};
|
||||
nixosConfigurations.doloroo-main = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs system;
|
||||
};
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./hosts/doloro/configuration.nix
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
inputs.disko.nixosModules.disko
|
||||
{ nixpkgs.overlays = overlays; }
|
||||
];
|
||||
};
|
||||
nixosConfigurations.doloroo-laptop-wsl = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs system;
|
||||
};
|
||||
modules = [
|
||||
./hosts/doloro-wsl/configuration.nix
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
inputs.disko.nixosModules.disko
|
||||
{ nixpkgs.overlays = overlays; }
|
||||
|
||||
Reference in New Issue
Block a user