"Add kubernetes tools, add betterdiscord activationscript"

This commit is contained in:
SeanOMik 2023-04-25 21:25:22 -04:00
parent 295db51428
commit 6d74b15815
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
2 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,7 @@
{
imports = [
./wireguard.nix
./k8s-tools.nix
];
users.users.seanomik = {
@ -22,6 +23,11 @@
remotePlay.openFirewall = true;
};
system.activationScripts.installBetterDiscord =
''
nix run nixpkgs#betterdiscordctl install
'';
home-manager.users.seanomik = { pkgs, ... }: {
home.stateVersion = "22.11";

6
home/seanomik/k8s-tools.nix Executable file
View File

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
home-manager.users.seanomik.home.packages = with pkgs; [
kubectl kubernetes-helm kustomize fluxcd kustomize-sops sops
];
}