mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
25 lines
429 B
Nix
25 lines
429 B
Nix
{ 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
|
|
];
|
|
};
|
|
}
|