From 337953c9069e045bda31ed777073e750c00aac7b Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Sun, 7 Jun 2026 12:52:38 +1200 Subject: Basic nix setup --- flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'flake.nix') 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 ]; + }; + }; +} -- cgit v1.2.3