my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
10
fork

Configure Feed

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

darwin/system-packages: include uutils

isabel 758f35c3 d7ef9f84

+2 -12
+1 -12
modules/base/programs.nix
··· 1 - { 2 - pkgs, 3 - self, 4 - config, 5 - ... 6 - }: 1 + { self, config, ... }: 7 2 let 8 3 inherit (self.lib) anyHome; 9 4 ··· 14 9 programs = { 15 10 fish.enable = qh (c: c.programs.fish.enable); 16 11 zsh.enable = qh (c: c.programs.zsh.enable); 17 - }; 18 - 19 - garden.packages = { 20 - # GNU core utilities (rewritten in rust) 21 - # a good idea for usage on macOS too 22 - inherit (pkgs) uutils-coreutils-noprefix; 23 12 }; 24 13 }
+1
modules/darwin/system-packages.nix
··· 4 4 inherit (pkgs) 5 5 libwebp # WebP image format library 6 6 m-cli # A macOS cli tool to manage macOS - a true swis army knife 7 + uutils-coreutils-noprefix # GNU core utilities (rewritten in rust) 7 8 ; 8 9 }; 9 10 }