aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index a9ca70d..ddfe10b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,12 +18,13 @@
busybox = pkgs.callPackage ./nix/busybox.nix {
inherit (pkgs) pkgsStatic;
};
+ runit = pkgsMusl.runit;
limine = pkgs.callPackage ./nix/limine.nix {};
initramfs = pkgs.callPackage ./nix/initramfs.nix {
inherit (self.packages.${system}) kernel busybox;
};
rootfs = pkgs.callPackage ./nix/rootfs.nix {
- inherit (self.packages.${system}) busybox;
+ inherit (self.packages.${system}) busybox runit;
inherit (pkgsMusl) musl;
};
iso = pkgs.callPackage ./nix/iso.nix {