aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/gh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/gh.nix')
-rw-r--r--modules/home-manager/gh.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/home-manager/gh.nix b/modules/home-manager/gh.nix
deleted file mode 100644
index 0b0ad6b..0000000
--- a/modules/home-manager/gh.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ config, lib, ... }:
-
-{
- options.gh.enable = lib.mkEnableOption "Setup gh";
- config = lib.mkIf config.gh.enable {
- programs.gh = {
- enable = true;
- };
- };
-}