my NixOS and nix-darwin config
0
fork

Configure Feed

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

.

+17 -4
+16 -4
modules/home/tools/zk/default.nix
··· 4 4 ... 5 5 }: 6 6 7 + with lib; 8 + let 9 + cfg = config.nyx.oh-my-posh; 10 + in 7 11 { 12 + options.nyx.zk = { 13 + enable = mkEnableOption "zk"; 8 14 9 - programs.zk = { 10 - enable = true; 11 15 }; 12 16 13 - home.file.".config/zk/config.toml".source = 14 - config.lib.file.mkOutOfStoreSymlink "${config.home.HomeDirectory}/Nyx/modules/home/tools/zk/config.toml"; 17 + config = mkIf (cfg.enable) { 18 + 19 + programs.zk = { 20 + enable = true; 21 + }; 22 + 23 + home.file.".config/zk/config.toml".source = 24 + config.lib.file.mkOutOfStoreSymlink "${config.home.HomeDirectory}/Nyx/modules/home/tools/zk/config.toml"; 25 + 26 + }; 15 27 16 28 }
+1
users/suri/Daedalus.nix
··· 5 5 nyx.aerospace.enable = true; 6 6 nyx.ghostty.enable = true; 7 7 nyx.orbstack.enable = true; 8 + nyx.zk.enable = true; 8 9 9 10 }