mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
33 lines
419 B
Nix
33 lines
419 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.xfconf;
|
|
|
|
in
|
|
{
|
|
meta = {
|
|
teams = [ lib.teams.xfce ];
|
|
};
|
|
|
|
options = {
|
|
programs.xfconf = {
|
|
enable = lib.mkEnableOption "Xfconf, the Xfce configuration storage system";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
pkgs.xfconf
|
|
];
|
|
|
|
services.dbus.packages = [
|
|
pkgs.xfconf
|
|
];
|
|
};
|
|
}
|