reorganized machine configs as hosts

This commit is contained in:
2025-07-29 21:53:16 -07:00
parent 7059b2162c
commit 8e5e8f9a08
7 changed files with 8 additions and 6 deletions

View File

@@ -46,17 +46,17 @@
specialArgs = {inherit inputs pkgs-unstable configPath;};
system = system;
modules = [
./eva-01/configuration.nix
./hosts/eva-01/configuration.nix
inputs.home-manager.nixosModules.default
nixos-hardware.nixosModules.lenovo-thinkpad-x1-nano-gen1
];
};
eva-03 = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs pkgs-unstable configPath;};
specialArgs = {inherit inputs pkgs-unstable configPath;};
system = system;
modules = [
./eva-03/configuration.nix
./hosts/eva-03/configuration.nix
inputs.home-manager.nixosModules.default
];
};

Binary file not shown.

View File

@@ -46,6 +46,7 @@
timg
tldr
traceroute
trippy
trivy
wireguard-tools
wget
@@ -58,6 +59,7 @@
bettercap
bully
burpsuite
cowpatty
crunch
dirbuster
dnschef

View File

@@ -75,7 +75,7 @@
virtualisation.docker.enable = true;
# Set your time zone.
time.timeZone = "America/New_York";
time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
@@ -267,7 +267,7 @@
;
};
users = {
"rogueking" = import ./../home-manager/home.nix;
"rogueking" = import ./../../home-manager/home.nix;
};
backupFileExtension = "backup";
};

View File

@@ -308,7 +308,7 @@
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
"rogueking" = import ./../home-manager/home.nix;
"rogueking" = import ./../../home-manager/home.nix;
};
backupFileExtension = "backup";
};