my NixOS and nix-darwin config
0
fork

Configure Feed

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

.

+17
+2
modules/home/tools/default.nix
··· 4 4 imports = [ 5 5 ./helix 6 6 ./zellij 7 + ./zk 7 8 ./git.nix 8 9 ./btop.nix 10 + 9 11 ]; 10 12 11 13 # home.sessionVariables.LIBRARY_PATH = "${
modules/home/tools/zk/config.toml

This is a binary file and will not be displayed.

+15
modules/home/tools/zk/default.nix
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + }: 6 + { 7 + 8 + programs.zk = { 9 + enable = true; 10 + }; 11 + 12 + home.file.".config/zk/config.toml".source = 13 + config.lib.file.MkOutOfStoreSymlink "${config.home.HomeDirectory}/Nyx/modules/home/tools/zk/config.toml"; 14 + 15 + }