Initial commit.

This commit is contained in:
DigitalDragon 2025-05-03 20:11:20 +02:00
commit dd7f0bfca3
No known key found for this signature in database
GPG key ID: E90DC40802835A6E

15
flake.nix Normal file
View file

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