my system configurations ^-^
0
fork

Configure Feed

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

feat: lazygit

willow 7c7355c3 540baa50

+14 -1
+1
modules/home/programs/tui/default.nix
··· 12 12 ./bat.nix # core 13 13 ./btop.nix # core 14 14 ./gitui.nix # dev 15 + ./lazygit.nix # dev 15 16 ./ncmpcpp.nix # music 16 17 ./yazi.nix # files 17 18 ];
+1 -1
modules/home/programs/tui/gitui.nix
··· 6 6 cfg = osConfig.settings.programs; 7 7 in { 8 8 config = lib.mkIf (cfg.tui.enable 9 - && cfg.categories.core.enable) { 9 + && cfg.categories.dev.enable) { 10 10 programs.gitui.enable = true; 11 11 }; 12 12 }
+12
modules/home/programs/tui/lazygit.nix
··· 1 + { 2 + osConfig, 3 + lib, 4 + ... 5 + }: let 6 + cfg = osConfig.settings.programs; 7 + in { 8 + config = lib.mkIf (cfg.tui.enable 9 + && cfg.categories.dev.enable) { 10 + programs.lazygit.enable = true; 11 + }; 12 + }