aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-07 12:52:38 +1200
committerArslaan Pathan <[email protected]>2026-06-07 12:52:38 +1200
commit337953c9069e045bda31ed777073e750c00aac7b (patch)
tree284049a53a2ef312d8202e78e981f3481f6c743b /flake.nix
parentbca83643c4bb5f4bcc2af727dbef1c53d937ddea (diff)
downloadyerbalinux-337953c9069e045bda31ed777073e750c00aac7b.tar.xz
yerbalinux-337953c9069e045bda31ed777073e750c00aac7b.zip
Basic nix setup
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index e69de29..d70a47b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -0,0 +1,14 @@
+{
+ description = "Yerba Linux";
+
+ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
+
+ outputs = { self, nixpkgs }: let
+ system = "x86_64-linux";
+ pkgs = nixpkgs.legacyPackages.${system};
+ in {
+ devShells.${system}.default = pkgs.mkShell {
+ buildInputs = with pkgs; [ gcc clang gnumake xorriso cpio ];
+ };
+ };
+}