diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-07 12:52:38 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-07 12:52:38 +1200 |
| commit | 337953c9069e045bda31ed777073e750c00aac7b (patch) | |
| tree | 284049a53a2ef312d8202e78e981f3481f6c743b /flake.nix | |
| parent | bca83643c4bb5f4bcc2af727dbef1c53d937ddea (diff) | |
| download | yerbalinux-337953c9069e045bda31ed777073e750c00aac7b.tar.xz yerbalinux-337953c9069e045bda31ed777073e750c00aac7b.zip | |
Basic nix setup
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 ]; + }; + }; +} |
