cleanup(all): moving all config to hosts folder

This commit is contained in:
2025-10-15 19:45:11 +01:00
parent b7182b41fc
commit 426331f908
6 changed files with 201 additions and 11 deletions

View File

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