diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-08-02 14:25:52 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-08-02 17:10:10 -0600 |
| commit | d16bcb693db18b8ab2508cef6400ce1219dac833 (patch) | |
| tree | c031207e7f1784fe1e913d35436c02e63f79f814 /sys | |
| parent | 951025ec921a83d9ade36252b2fdc6da9f469c03 (diff) | |
pkgs/lib: refactor out of util/
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/baseline/default.nix | 2 | ||||
| -rw-r--r-- | sys/virt/libvirt.nix | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/baseline/default.nix b/sys/baseline/default.nix index 49b9b43..a433bb7 100644 --- a/sys/baseline/default.nix +++ b/sys/baseline/default.nix @@ -22,6 +22,8 @@ with lib; { ]; }; + lib.local = pkgs.local.lib; + local.boot.impermanence.directories = [ "/var/lib/dhparams" ]; nix = { diff --git a/sys/virt/libvirt.nix b/sys/virt/libvirt.nix index 29679ae..0f98563 100644 --- a/sys/virt/libvirt.nix +++ b/sys/virt/libvirt.nix @@ -2,7 +2,7 @@ with lib; let cfg = config.local.virt; - inherit (import ../../util lib) importAll; + inherit (config.lib.local) importAll; doms = mapAttrs (_: dom: dom { inherit config lib pkgs; }) (importAll { root = ./dom; }); in |
