initial commit

This commit is contained in:
2025-08-01 12:39:00 -04:00
commit 4dffbe1dd4
3 changed files with 40 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
description = "A mini Linux environment using Nix without NixOS";
inputs = {
nixpkgs.url = "nixpkgs/nixos-25.05";
};
outputs = {self, nixpkgs }: {
packages.x86_64-linux.hello =
nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
}