removed k9s overlay

this commit got builds working, working in the sense that the build
actually threw an error! have to fix that
This commit is contained in:
2025-12-10 17:09:19 -05:00
parent 4207b320c9
commit 9fedd2d61e
4 changed files with 19 additions and 25 deletions

View File

@@ -21,14 +21,13 @@
nix-flatpak,
darwin,
home-manager,
ghostty,
rust-overlay,
...
}: let
userName = "wyatt";
userEmail = "wyatt@wyattjmiller.com";
extraSpecialArgs = {
inherit userName userEmail ghostty;
inherit userName userEmail;
};
myOverlays = { ... }: {
@@ -48,7 +47,7 @@
darwinConfigurations."sephiroth" = darwin.lib.darwinSystem {
system = "aarch64-darwin";
specialArgs = {
inherit userName userEmail ghostty;
inherit userName userEmail;
hostname = "sephiroth";
role = "workstation";
};
@@ -73,7 +72,7 @@
nixosConfigurations."cloud" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit userName userEmail ghostty;
inherit userName userEmail;
hostname = "cloud";
role = "workstation";
};
@@ -160,7 +159,7 @@
pkgs = nixpkgs.legacyPackages.${system};
extraSpecialArgs = {
inherit userName userEmail hostname ghostty;
inherit userName userEmail hostname;
isNixOS = false;
role = "workstation";
};