tangled
alpha
login
or
join now
freshlybakedca.ke
/
patisserie
10
fork
atom
Your one-stop-cake-shop for everything Freshly Baked has to offer
10
fork
atom
overview
issues
pulls
5
pipelines
feat(pm/coded): set firefox as default browser
thecoded.prof
2 months ago
f6001eaf
cc88af8e
verified
This commit was signed with the committer's
known signature
.
thecoded.prof
SSH Key Fingerprint:
SHA256:ePn0u8NlJyz3J4Zl9MHOYW3f4XKoi5K1I4j53bwpG0U=
5/5
deadnix.yml
success
4m 5s
packetmix-build.yml
success
1h 1m 57s
packetmix-npins-duplicate-check.yml
success
6s
packetmix-treefmt.yaml
success
36s
reuse.yml
success
6s
+17
1 changed file
expand all
collapse all
unified
split
packetmix
homes
coded
xdg.nix
+17
packetmix/homes/coded/xdg.nix
reviewed
···
1
1
+
# SPDX-FileCopyrightText: 2026 FreshlyBakedCake
2
2
+
#
3
3
+
# SPDX-License-Identifier: MIT
4
4
+
5
5
+
{
6
6
+
xdg.mimeApps = {
7
7
+
enable = true;
8
8
+
defaultApplications = {
9
9
+
"default-web-browser" = [ "firefox.desktop" ];
10
10
+
"text/html" = [ "firefox.desktop" ];
11
11
+
"x-scheme-handler/http" = [ "firefox.desktop" ];
12
12
+
"x-scheme-handler/https" = [ "firefox.desktop" ];
13
13
+
"x-scheme-handler/about" = [ "firefox.desktop" ];
14
14
+
"x-scheme-handler/unknown" = [ "firefox.desktop" ];
15
15
+
};
16
16
+
};
17
17
+
}