diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-21 17:54:18 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-22 17:12:55 +0200 |
commit | 960c950b43fb2a9c33af9a23e7569e30c00dabbe (patch) | |
tree | 4c63fa1e462a2f88cfba8cf464bc3fca38083d8e /modules | |
parent | hm: consume zathura module (diff) | |
download | nix-config-960c950b43fb2a9c33af9a23e7569e30c00dabbe.tar.gz nix-config-960c950b43fb2a9c33af9a23e7569e30c00dabbe.zip |
bat: move to module
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hm/sils/bat.nix | 21 | ||||
-rw-r--r-- | modules/hm/sils/default.nix | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/modules/hm/sils/bat.nix b/modules/hm/sils/bat.nix new file mode 100644 index 0000000..5f7b967 --- /dev/null +++ b/modules/hm/sils/bat.nix @@ -0,0 +1,21 @@ +{ + config, + lib, + pkgs, + ... +}: let + cfg = config.sils.bat; +in { + options.sils.bat.enable = lib.mkEnableOption "bat"; + config = lib.mkIf cfg.enable { + programs.bat = { + enable = true; + extraPackages = with pkgs.bat-extras; [ + batdiff + batman + batgrep + batwatch + ]; + }; + }; +} diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix index c298715..fc0893f 100644 --- a/modules/hm/sils/default.nix +++ b/modules/hm/sils/default.nix @@ -1,5 +1,6 @@ {...}: { imports = [ + ./bat.nix ./firefox ./jameica.nix ./mail.nix |