aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 6266d80..fa42e79 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,13 +18,13 @@
initramfs = pkgs.callPackage ./nix/initramfs.nix {
inherit (self.packages.${system}) kernel busybox;
};
- # rootfs = pkgs.callPackage ./nix/rootfs.nix {
- # inherit (self.packages.${system}) busybox;
- # };
- # iso = pkgs.callPackage ./nix/iso.nix {
- # inherit (self.packages.${system}) kernel limine initramfs rootfs;
- # };
- default = self.packages.${system}.initramfs; # change to ISO when ready
+ rootfs = pkgs.callPackage ./nix/rootfs.nix {
+ inherit (self.packages.${system}) busybox;
+ };
+ iso = pkgs.callPackage ./nix/iso.nix {
+ inherit (self.packages.${system}) kernel limine initramfs rootfs;
+ };
+ default = self.packages.${system}.iso;
};
};
}