ooknet/inputs/system/modules/base/programs/dconf/default.nix

13 lines
211 B
Nix

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