aboutsummaryrefslogtreecommitdiff
path: root/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 /nix
parentad33f0e0ecb6d89ef283507d194738234b0d0843 (diff)
downloadyerbalinux-4c22740c879ceba4e42342f8ab770b9ebb4960a3.tar.xz
yerbalinux-4c22740c879ceba4e42342f8ab770b9ebb4960a3.zip
Add some placeholders
Diffstat (limited to 'nix')
-rw-r--r--nix/iso.nix12
-rw-r--r--nix/rootfs.nix12
2 files changed, 24 insertions, 0 deletions
diff --git a/nix/iso.nix b/nix/iso.nix
index e69de29..35b942a 100644
--- a/nix/iso.nix
+++ b/nix/iso.nix
@@ -0,0 +1,12 @@
+{ stdenv, fetchgit }:
+
+stdenv.mkDerivation {
+ name = "iso-yerba";
+ src = ./.;
+ buildPhase = ''
+ echo "todo actually build iso"
+ '';
+ installPhase = ''
+ echo "todo actually install iso"
+ '';
+}
diff --git a/nix/rootfs.nix b/nix/rootfs.nix
index e69de29..ab6c6b4 100644
--- a/nix/rootfs.nix
+++ b/nix/rootfs.nix
@@ -0,0 +1,12 @@
+{ stdenv, fetchgit }:
+
+stdenv.mkDerivation {
+ name = "rootfs-yerba";
+ src = ./.;
+ buildPhase = ''
+ echo "todo actually build rootfs"
+ '';
+ installPhase = ''
+ echo "todo actually install rootfs"
+ '';
+}