diff options
author | Soispha <soispha@vhack.eu> | 2023-12-29 09:20:54 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-12-29 09:20:54 +0100 |
commit | 02f2218d404ff64549d3ffdd8a07bb217639877f (patch) | |
tree | 64b00f88e4d641b67e889950feda858db7d3ed4a /hm | |
parent | chore(version): v1.21.0 (diff) | |
download | nixos-config-02f2218d404ff64549d3ffdd8a07bb217639877f.tar.gz nixos-config-02f2218d404ff64549d3ffdd8a07bb217639877f.zip |
fix(hm/conf/): Use new xdg config module
Diffstat (limited to 'hm')
-rw-r--r-- | hm/soispha/conf/default.nix | 1 | ||||
-rw-r--r-- | hm/soispha/conf/firefox/default.nix | 10 |
2 files changed, 1 insertions, 10 deletions
diff --git a/hm/soispha/conf/default.nix b/hm/soispha/conf/default.nix index 93f1d34d..4cd9e31e 100644 --- a/hm/soispha/conf/default.nix +++ b/hm/soispha/conf/default.nix @@ -36,6 +36,7 @@ ./taskwarrior ./timewarrior ./tridactyl + ./xdg ./yambar ./zsh ]; diff --git a/hm/soispha/conf/firefox/default.nix b/hm/soispha/conf/firefox/default.nix index df760c03..e7903a92 100644 --- a/hm/soispha/conf/firefox/default.nix +++ b/hm/soispha/conf/firefox/default.nix @@ -97,16 +97,6 @@ in { # improve wayland support MOZ_ENABLE_WAYLAND = 1; }; - xdg.mimeApps = { - enable = true; - defaultApplications = { - "text/html" = ["firefox.desktop"]; - "x-scheme-handler/http" = ["firefox.desktop"]; - "x-scheme-handler/https" = ["firefox.desktop"]; - "x-scheme-handler/about" = ["firefox.desktop"]; - "x-scheme-handler/unknown" = ["firefox.desktop"]; - }; - }; programs.firefox = { enable = true; inherit (config.soispha.firefox) package; |