my system configurations ^-^
0
fork

Configure Feed

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

feat(programs): uv

willow 055393d2 c597b291

+20
+20
modules/shared/home/programs/cli/default.nix
··· 1 1 { 2 + lib, 3 + inputs, 4 + pkgs, 5 + osConfig, 6 + ... 7 + }: let 8 + inherit (lib) optionals concatLists; 9 + cfg = osConfig.settings.programs; 10 + in { 2 11 imports = [ 3 12 ./git.nix 4 13 ]; 14 + 15 + config = lib.mkIf cfg.cli.enable { 16 + home.packages = with pkgs; 17 + with inputs; 18 + concatLists [ 19 + (optionals cfg.categories.dev.enable [ 20 + # python 21 + uv 22 + ]) 23 + ]; 24 + }; 5 25 }