From 9771c27cb39710461ea08a18b040d0d309b9b442 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Tue, 10 Sep 2024 13:27:42 -0500 Subject: [PATCH] move around krewfile --- nixos/home/jahanson/global.nix | 13 ------------- nixos/home/jahanson/workstation.nix | 11 +++++++++++ nixos/profiles/role-dev.nix | 6 +++++- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/nixos/home/jahanson/global.nix b/nixos/home/jahanson/global.nix index 2bccc7d..5438f2f 100644 --- a/nixos/home/jahanson/global.nix +++ b/nixos/home/jahanson/global.nix @@ -3,7 +3,6 @@ with config; { imports = [ ../modules - inputs.krewfile.homeManagerModules.krewfile ]; config = { @@ -21,15 +20,6 @@ with config; EDITOR = "vim"; }; - programs.krewfile = { - enable = true; - krewPackage = pkgs.krew; - plugins = [ - "resource-capacity" - "rook-ceph" - ]; - }; - home = { # Install these packages for my user @@ -104,9 +94,6 @@ with config; # nix tools nvd - # charmbracelet tools - gum - vhs ]; }; }; diff --git a/nixos/home/jahanson/workstation.nix b/nixos/home/jahanson/workstation.nix index 6eaf03a..6f8d4a8 100644 --- a/nixos/home/jahanson/workstation.nix +++ b/nixos/home/jahanson/workstation.nix @@ -3,8 +3,19 @@ with config; { imports = [ ./global.nix + inputs.krewfile.homeManagerModules.krewfile ]; + # Krewfile management + programs.krewfile = { + enable = true; + krewPackage = pkgs.krew; + plugins = [ + "resource-capacity" + "rook-ceph" + ]; + }; + myHome = { programs.firefox.enable = true; programs.thunderbird.enable = true; diff --git a/nixos/profiles/role-dev.nix b/nixos/profiles/role-dev.nix index eaed197..175a60e 100644 --- a/nixos/profiles/role-dev.nix +++ b/nixos/profiles/role-dev.nix @@ -21,9 +21,13 @@ with config; shfmt statix - # bind # for dns utils like named-checkconf + # flake imports inputs.nix-inspect.packages.${pkgs.system}.default inputs.talhelper.packages.${pkgs.system}.default + + # charmbracelet tools + gum + vhs ]; programs.direnv = {