nixpkgs/nixos/modules/programs/xfconf.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
439 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.xfconf;
in
{
meta = {
maintainers = lib.teams.xfce.members;
};
options = {
programs.xfconf = {
enable = lib.mkEnableOption "Xfconf, the Xfce configuration storage system";
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.xfce.xfconf
];
services.dbus.packages = [
pkgs.xfce.xfconf
];
};
}