mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-24 23:51:54 -05:00
firefox: add gnoe, browser connector
This commit is contained in:
parent
2d9ae2764a
commit
12b6675641
|
@ -8,7 +8,8 @@
|
|||
programs.firefox = {
|
||||
enable = true;
|
||||
nativeMessagingHosts =
|
||||
lib.optional (config.ar.home.apps.keepassxc.enable) pkgs.keepassxc;
|
||||
lib.optionals (config.ar.home.desktop.gnome.enable) [pkgs.gnome-browser-connector]
|
||||
++ lib.optional (config.ar.home.apps.keepassxc.enable) pkgs.keepassxc;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -95,6 +95,12 @@ in {
|
|||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
gnome.enable = lib.mkOption {
|
||||
description = "GNOME with sane defaults.";
|
||||
default = osConfig.ar.desktop.gnome.enable;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
hyprland = {
|
||||
enable = lib.mkOption {
|
||||
description = "Hyprland with full desktop session components.";
|
||||
|
|
Loading…
Reference in a new issue