nix all the things

try zed

karitham.dev 55873897 05b7c87d

verified
+5
+1
modules/desktop/apps/default.nix
··· 2 2 imports = [ 3 3 ./browser.nix 4 4 ./discord.nix 5 + ./zed.nix 5 6 ]; 6 7 }
+4
modules/desktop/apps/zed.nix
··· 1 + { lib, config, ... }: 2 + { 3 + config = lib.mkIf (config.dev.tools.enable || false) { programs.zed-editor.enable = true; }; 4 + }