diff options
Diffstat (limited to 'roles/home/dev')
| -rw-r--r-- | roles/home/dev/default.nix | 25 |
1 files changed, 0 insertions, 25 deletions
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 - ]; - }; -} |