diff options
Diffstat (limited to 'snowfall/modules/nixos/apps/git')
| -rw-r--r-- | snowfall/modules/nixos/apps/git/default.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/snowfall/modules/nixos/apps/git/default.nix b/snowfall/modules/nixos/apps/git/default.nix deleted file mode 100644 index e7a2afa..0000000 --- a/snowfall/modules/nixos/apps/git/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.apps.git; -in { - options.${namespace}.apps.git = with types; { - enable = mkEnableOption "git"; - }; - - config = mkIf cfg.enable { - programs.git.enable = true; - }; -} |