18 lines
417 B
Nix
18 lines
417 B
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
with lib;
|
||
|
let cfg = config.eboskma.gnome;
|
||
|
in
|
||
|
{
|
||
|
options.eboskma.gnome.enable = mkEnableOption "activate gnome support settings";
|
||
|
|
||
|
config = mkIf (cfg.enable) {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
gnomeExtensions.appindicator
|
||
|
];
|
||
|
services.udev.packages = with pkgs; [
|
||
|
gnome3.gnome-settings-daemon
|
||
|
];
|
||
|
services.gnome.gnome-keyring.enable = true;
|
||
|
};
|
||
|
}
|