diff options
| author | Mike Vink <59492084+ivi-vink@users.noreply.github.com> | 2025-01-18 21:55:22 +0100 |
|---|---|---|
| committer | Mike Vink <59492084+ivi-vink@users.noreply.github.com> | 2025-01-19 12:39:25 +0000 |
| commit | 75f4f4542766191f9597d48dfc726bdc269b1a89 (patch) | |
| tree | fe5fbdd8975e23e469482ffb9b2d6748e7342774 /profiles | |
| parent | e42279a08a4d7ff340a6acf4881279a7617a3c2d (diff) | |
before patch
Diffstat (limited to 'profiles')
| -rw-r--r-- | profiles/core/home.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/profiles/core/home.nix b/profiles/core/home.nix index 5fd82f0..01ce9ec 100644 --- a/profiles/core/home.nix +++ b/profiles/core/home.nix @@ -37,10 +37,17 @@ with lib; { "x-scheme-handler/magnet" = ["torrent.desktop"]; "x-scheme-handler/mailto" = ["mail.desktop"]; "x-scheme-handler/msteams" = ["teams.desktop"]; + "x-scheme-handler/http" = ["surf.desktop"]; + "x-scheme-handler/https" = ["surf.desktop"]; }; }; desktopEntries = with pkgs; optionalAttrs (!machine.isDarwin) { + surf = { + type = "Application"; + name = "Browser"; + exec = "${surf}/bin/surf %u"; + }; text = { type = "Application"; name = "Text editor"; |
