diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 18:33:14 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:47 -0700 |
| commit | c9becd28bf4c7acd30340512eb1cb1da105f9da7 (patch) | |
| tree | 1ef776a205a2d1e85ccf2c351354bf3e95b697aa /roles | |
| parent | fe3afdd7fbbb64d687ac728843543e28ab1ff1fd (diff) | |
migration: cloc
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/home/default.nix | 8 | ||||
| -rw-r--r-- | roles/home/dev/default.nix | 25 |
2 files changed, 0 insertions, 33 deletions
diff --git a/roles/home/default.nix b/roles/home/default.nix deleted file mode 100644 index 295b1a4..0000000 --- a/roles/home/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ ... }: - -{ - imports = [ - ./desktop - ./dev - ]; -} diff --git a/roles/home/dev/default.nix b/roles/home/dev/default.nix deleted file mode 100644 index e451d76..0000000 --- a/roles/home/dev/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ config, pkgs, lib, inputs, ... }: -with lib; - -let cfg = config.home.roles.dev; in { - imports = [ - ./git.nix - ./vim.nix - ./vscode.nix - ]; - - options.home.roles.dev = { - enable = mkEnableOption "dev home role"; - - key = mkOption { - type = types.str; - description = "git signing key"; - }; - }; - - config = mkIf cfg.enable { - home.packages = with pkgs; [ - cloc - ]; - }; -} |