added firefox pwa

This commit is contained in:
willifan 2025-01-11 13:18:12 +01:00
parent 73caf44386
commit 392f3952ce
2 changed files with 14 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./autostart.nix
./boot.nix
./dev.nix
./firefox.nix
./k40.nix
./keyboard.nix
./nfs-client.nix

View file

@ -0,0 +1,13 @@
{ lib, config, pkgs, ... }:
lib.mkIf config.desktop.enable {
environment.systemPackages = [
pkgs.firefoxpwa
];
programs.firefox = {
enable = true;
package = pkgs.firefox;
nativeMessagingHosts.packages = [ pkgs.firefoxpwa ];
};
}