aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-07 16:01:27 +1200
committerArslaan Pathan <[email protected]>2026-06-07 16:01:27 +1200
commit4c22740c879ceba4e42342f8ab770b9ebb4960a3 (patch)
treefd8e91e30a3fe7a66bed57abaec0203d2325d089 /flake.nix
parentad33f0e0ecb6d89ef283507d194738234b0d0843 (diff)
downloadyerbalinux-4c22740c879ceba4e42342f8ab770b9ebb4960a3.tar.xz
yerbalinux-4c22740c879ceba4e42342f8ab770b9ebb4960a3.zip
Add some placeholders
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;
};
};
}