ooknet/nixos/modules/roles/workstation/programs/dconf.nix

13 lines
204 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf;
inherit (builtins) elem;
host = config.ooknet.host;
in
{
config = mkIf (elem "workstation" host.function){
programs.dconf.enable = true;
};
}