Compare commits
2 commits
faa055caf2
...
392f3952ce
Author | SHA1 | Date | |
---|---|---|---|
|
392f3952ce | ||
|
73caf44386 |
4 changed files with 16 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
|||
dev.enable = true;
|
||||
laser.enable = true;
|
||||
windowManager = "niri-session";
|
||||
wm.niri.enable = true;
|
||||
hyprland.enable = false;
|
||||
};
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
autologin.enable = false;
|
||||
emulation.enable = true;
|
||||
laser.enable = true;
|
||||
wm.niri.enable = true;
|
||||
|
||||
hyprland = {
|
||||
hardware.Lillie.enable = true;
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
./autostart.nix
|
||||
./boot.nix
|
||||
./dev.nix
|
||||
./firefox.nix
|
||||
./k40.nix
|
||||
./keyboard.nix
|
||||
./nfs-client.nix
|
||||
|
|
13
modules/default/common/desktop/firefox.nix
Normal file
13
modules/default/common/desktop/firefox.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue