nixos-config/lib/builders/build-dconf-db.nix

9 lines
301 B
Nix
Raw Normal View History

# A standalone version of the dconf profile generation build step based from
# the nixpkgs' NixOS dconf module.
{ lib, runCommand, dconf }:
{ dir, name ? baseNameOf dir, keyfiles, profile }@args:
2025-01-12 09:57:14 +00:00
runCommand "dconf-${name}" { nativeBuildInputs = [ (lib.getBin dconf) ]; }
"dconf compile $out ${dir}"