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

@@ -13,7 +13,7 @@
skipLatestRevCheck = false;
skin = {
catppuccin-mocha = ./defaults/k9s/catppuccin-mocha.yml;
catppuccin-mocha = ../defaults/k9s-skins/catppuccin-mocha.yml;
};
ui = {

View File

@@ -1,4 +1,4 @@
{ pkgs, ghostty, ... }: {
{ pkgs, ... }: {
programs.alacritty = {
enable = pkgs.stdenv.isLinux;
settings = {
@@ -103,9 +103,4 @@
programs.kitty = {
enable = false; # TODO: to enable later
};
home.packages = if pkgs.stdenv.isLinux then
[ ghostty.packages.${pkgs.system}.default ]
else
[ ];
}