mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 04:51:55 -05:00
firefox: add gnoe, browser connector
This commit is contained in:
parent
2d9ae2764a
commit
12b6675641
|
@ -8,7 +8,8 @@
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nativeMessagingHosts =
|
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;
|
type = lib.types.bool;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gnome.enable = lib.mkOption {
|
||||||
|
description = "GNOME with sane defaults.";
|
||||||
|
default = osConfig.ar.desktop.gnome.enable;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
|
|
||||||
hyprland = {
|
hyprland = {
|
||||||
enable = lib.mkOption {
|
enable = lib.mkOption {
|
||||||
description = "Hyprland with full desktop session components.";
|
description = "Hyprland with full desktop session components.";
|
||||||
|
|
Loading…
Reference in a new issue