mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
nixos/pantheon: options for extra switchboard plugs and wingpanel indicators
This commit is contained in:
parent
4f49053ad9
commit
016c589bb4
@ -52,6 +52,18 @@ in
|
||||
];
|
||||
};
|
||||
|
||||
extraWingpanelIndicators = mkOption {
|
||||
default = null;
|
||||
type = with types; nullOr (listOf package);
|
||||
description = "Indicators to add to Wingpanel.";
|
||||
};
|
||||
|
||||
extraSwitchboardPlugs = mkOption {
|
||||
default = null;
|
||||
type = with types; nullOr (listOf package);
|
||||
description = "Plugs to add to Switchboard.";
|
||||
};
|
||||
|
||||
extraGSettingsOverrides = mkOption {
|
||||
default = "";
|
||||
type = types.lines;
|
||||
@ -183,8 +195,12 @@ in
|
||||
elementary-session-settings
|
||||
elementary-shortcut-overlay
|
||||
gala
|
||||
switchboard-with-plugs
|
||||
wingpanel-with-indicators
|
||||
(switchboard-with-plugs.override {
|
||||
plugs = cfg.extraSwitchboardPlugs;
|
||||
})
|
||||
(wingpanel-with-indicators.override {
|
||||
indicators = cfg.extraWingpanelIndicators;
|
||||
})
|
||||
|
||||
# Services
|
||||
cerbere
|
||||
|
Loading…
Reference in New Issue
Block a user