diff options
author | Ben Sima <ben@bsima.me> | 2025-02-07 13:06:39 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-02-07 13:06:39 -0500 |
commit | 1e7c2abaa71502b32557e80b84c037c8fbea6fc9 (patch) | |
tree | bd3c470fb66491431d158f4452d7116c6bbaa7d2 /lib/linux.nix | |
parent | d440af8c8f6b19baf507efab0fd2a0c3fc63f557 (diff) |
trying to get firefox pwa apps working
Diffstat (limited to 'lib/linux.nix')
-rw-r--r-- | lib/linux.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/linux.nix b/lib/linux.nix index a86929e..9f6bc73 100644 --- a/lib/linux.nix +++ b/lib/linux.nix @@ -55,8 +55,8 @@ in dict dmenu feh - firefox flameshot + firefoxpwa gajim glibcLocales # rofi locale fix -- https://github.com/rycee/home-manager/issues/354#issuecomment-415914278 gnumake @@ -213,6 +213,16 @@ in programs = { git.signing.signByDefault = true; + + firefox = { + enable = true; + package = + if lib.versionAtLeast config.home.stateVersion "19.09" + then pkgs.firefox + else pkgs.firefox-unwrapped; + nativeMessagingHosts = [ pkgs.firefoxpwa ]; + }; + qutebrowser = { enable = true; settings = { |