summary refs log tree commit diff
path: root/nixos/modules/programs/dconf.nix
blob: 1b7e20799819a6cf1ec9ec996011748bd5d514df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ config, lib, ... }:

let
  inherit (lib) mkOption mkIf types mapAttrsToList;
  cfg = config.programs.dconf;

  mkDconfProfile = name: path:
    { source = path; target = "dconf/profile/${name}"; };

in
{
  ###### interface

  options = {
    programs.dconf = {

      profiles = mkOption {
        type = types.attrsOf types.path;
        default = {};
        description = "Set of dconf profile files.";
        internal = true;
      };

    };
  };

  ###### implementation

  config = mkIf (cfg.profiles != {}) {
    environment.etc =
      (mapAttrsToList mkDconfProfile cfg.profiles);
  };

}