my system configurations ^-^
0
fork

Configure Feed

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

feat: atuin

willow b81cf979 86bdedee

+22
+21
modules/shared/home/programs/cli/atuin.nix
··· 1 + { 2 + config, 3 + osConfig, 4 + lib, 5 + ... 6 + }: let 7 + cfg = osConfig.settings.programs; 8 + in { 9 + # TODO: sync and dedicated server 10 + config = lib.mkIf (cfg.cli.enable 11 + && cfg.categories.core.enable) { 12 + programs.atuin = { 13 + enable = true; 14 + 15 + enableBashIntegration = config.programs.bash.enable; 16 + enableFishIntegration = config.programs.fish.enable; 17 + enableZshIntegration = config.programs.zsh.enable; 18 + enableNushellIntegration = config.programs.nushell.enable; 19 + }; 20 + }; 21 + }
+1
modules/shared/home/programs/cli/default.nix
··· 9 9 cfg = osConfig.settings.programs; 10 10 in { 11 11 imports = [ 12 + ./atuin.nix 12 13 ./bat.nix 13 14 ./beets.nix 14 15 ./bun.nix