From 952e9731edd5b38adcf090a9576730356c0979c5 Mon Sep 17 00:00:00 2001 From: Roy Dumblauskas Date: Tue, 16 Jun 2026 22:53:21 -0500 Subject: [PATCH] add core utils --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 32cfd83..a4a409f 100755 --- a/configuration.nix +++ b/configuration.nix @@ -136,7 +136,10 @@ wantedBy = [ "initrd.target" ]; before = [ "sysroot.mount" ]; after = [ "zfs-import-zroot.service" ]; - path = with pkgs; [ zfs ]; + path = with pkgs; [ + coreutils + zfs + ]; unitConfig.DefaultDependencies = "no"; serviceConfig.Type = "oneshot";