forked from mirrors/nixpkgs
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
# Chrome GNOME Shell native host connector.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
meta = {
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
|
|
# Added 2021-05-07
|
|
imports = [
|
|
(mkRenamedOptionModule
|
|
[ "services" "gnome3" "chrome-gnome-shell" "enable" ]
|
|
[ "services" "gnome" "chrome-gnome-shell" "enable" ]
|
|
)
|
|
];
|
|
|
|
###### interface
|
|
options = {
|
|
services.gnome.chrome-gnome-shell.enable = mkEnableOption (lib.mdDoc ''
|
|
Chrome GNOME Shell native host connector, a DBus service
|
|
allowing to install GNOME Shell extensions from a web browser.
|
|
'');
|
|
};
|
|
|
|
|
|
###### implementation
|
|
config = mkIf config.services.gnome.chrome-gnome-shell.enable {
|
|
environment.etc = {
|
|
"chromium/native-messaging-hosts/org.gnome.chrome_gnome_shell.json".source = "${pkgs.chrome-gnome-shell}/etc/chromium/native-messaging-hosts/org.gnome.chrome_gnome_shell.json";
|
|
"opt/chrome/native-messaging-hosts/org.gnome.chrome_gnome_shell.json".source = "${pkgs.chrome-gnome-shell}/etc/opt/chrome/native-messaging-hosts/org.gnome.chrome_gnome_shell.json";
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.chrome-gnome-shell ];
|
|
|
|
services.dbus.packages = [ pkgs.chrome-gnome-shell ];
|
|
|
|
nixpkgs.config.firefox.enableGnomeExtensions = true;
|
|
};
|
|
}
|