my NixOS and nix-darwin config
0
fork

Configure Feed

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

n

+12 -5
-1
hosts/Daedalus/default.nix
··· 13 13 environment.systemPackages = with pkgs; [ 14 14 vim 15 15 git 16 - nh 17 16 zellij 18 17 fzf 19 18 ];
+12 -4
modules/home/tools/default.nix
··· 1 - { pkgs, lib, ... }: { 1 + { pkgs, lib, ... }: 2 + { 2 3 3 - imports = [ ./helix ./zellij ./git.nix ./btop.nix ]; 4 + imports = [ 5 + ./helix 6 + ./zellij 7 + ./git.nix 8 + ./btop.nix 9 + ]; 4 10 5 - home.sessionVariables.LIBRARY_PATH = 6 - "${lib.makeLibraryPath [ pkgs.libiconv ]}\${LIBRARY_PATH:+:$LIBRARY_PATH}"; 11 + home.sessionVariables.LIBRARY_PATH = "${ 12 + lib.makeLibraryPath [ pkgs.libiconv ] 13 + }\${LIBRARY_PATH:+:$LIBRARY_PATH}"; 7 14 8 15 home.packages = with pkgs; [ 9 16 ··· 12 19 fastfetch 13 20 zstd 14 21 coreutils-prefixed 22 + nh 15 23 yazi 16 24 fzf 17 25 github-cli