1
0
Fork 0
forked from pim/blog
This commit is contained in:
Pim Kunis 2024-04-26 10:59:32 +02:00
commit f212aae139
157 changed files with 6428 additions and 0 deletions

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;
};
}