diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-26 11:56:52 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-26 11:56:52 -0700 |
| commit | cf1c46509c26d2ce05be730f04ee043d4154f44b (patch) | |
| tree | 97531c1361d8d35d767144480c2e029be22777cf | |
| parent | a48baa41735494d568962c9628cbc4d67bd185af (diff) | |
home: dev: adopt cloc
| -rw-r--r-- | hosts/c-pc/home.nix | 2 | ||||
| -rw-r--r-- | hosts/phoenix/home.nix | 2 | ||||
| -rw-r--r-- | roles/home/dev/default.nix | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index f8b48de..960cc8e 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -128,8 +128,6 @@ #TODO: latest update broke # jetbrains.idea-community - - cloc ]; home.file = { diff --git a/hosts/phoenix/home.nix b/hosts/phoenix/home.nix index 5bd34b6..684b35a 100644 --- a/hosts/phoenix/home.nix +++ b/hosts/phoenix/home.nix @@ -99,8 +99,6 @@ obsidian prismlauncher - - cloc ]; home.stateVersion = "23.11"; diff --git a/roles/home/dev/default.nix b/roles/home/dev/default.nix index b092246..3f5d6f2 100644 --- a/roles/home/dev/default.nix +++ b/roles/home/dev/default.nix @@ -22,5 +22,9 @@ let cfg = config.home.roles.dev; in { git.enable = true; vscode.enable = config.home.roles.desktop.enable; }; + + home.packages = with pkgs; [ + cloc + ]; }; } |