Add some k8s tools

This commit is contained in:
2024-03-13 11:52:27 +01:00
parent 79111d65ba
commit fbdda940f5
3 changed files with 38 additions and 17 deletions

View File

@@ -32,7 +32,13 @@
spotify
spicetify-cli
sshfs
talosctl
# k8s tools
unstable.talosctl
unstable.k9s
unstable.cilium-cli
unstable.kubernetes-helm
unstable.cmctl
# steam
# steam-run

View File

@@ -1,8 +1,23 @@
{ pkgs, ... }: {
{ pkgs, ... }:
# let
# obs-backgroundremoval_1_1_10 = (pkgs.obs-studio-plugins.obs-backgroundremoval.overrideAttrs {
# version = "1.1.10";
# src = pkgs.fetchFromGitHub {
# owner = "occ-ai";
# repo = "obs-backgroundremoval";
# rev = "1.1.10";
# hash = "sha256-6OTtmjXS3fiorEPUSjjqrS8u9fVJnnZZoD722W3JQO8=";
# };
# }).override {
# onnxruntime = pkgs.unstable.onnxruntime;
# };
# in
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-backgroundremoval
];
#plugins = [ obs-backgroundremoval_1_1_10 ];
};
}