0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Move systemd-lib.nix and systemd-unit-options.nix into utils

This commit is contained in:
Will Fancher 2021-11-20 12:34:13 -05:00
parent 715f634119
commit 851495a752
9 changed files with 22 additions and 19 deletions

View file

@ -1,8 +1,8 @@
{ config, lib , pkgs, ...}:
{ config, lib, pkgs, utils, ...}:
with utils.systemdUtils.unitOptions;
with utils.systemdUtils.lib;
with lib;
with import ./systemd-unit-options.nix { inherit config lib; };
with import ./systemd-lib.nix { inherit config lib pkgs; };
let
cfg = config.systemd.nspawn;