initial commit

This commit is contained in:
Sk7Str1p3 2026-03-08 12:13:00 +03:00
commit 4a576b32ff
No known key found for this signature in database
GPG key ID: 4DD995933D06D43B

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
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;
};
}