my nixos/home-manager configuration
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add bat

youn a647dce5 91e72f9d

+17
+1
home-manager/common.nix
··· 47 47 # cli 48 48 ssh.enable = true; 49 49 git.enable = true; 50 + bat.enable = true; 50 51 jujutsu.enable = true; 51 52 direnv.enable = true; 52 53 neovim.enable = true;
+16
home-manager/modules/bat.nix
··· 1 + { 2 + config, 3 + lib, 4 + ... 5 + }: 6 + 7 + let 8 + cfg = config.programs.bat; 9 + in 10 + { 11 + config = lib.mkIf cfg.enable { 12 + home.shellAliases = { 13 + cat = "bat"; 14 + }; 15 + }; 16 + }