This commit is contained in:
Michael Zhang 2021-09-01 15:03:00 -05:00
commit 40d2cacb4e
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 15 additions and 0 deletions

4
README.md Normal file
View file

@ -0,0 +1,4 @@
nix-stuff
===
A list of various nix packages and modules that I use for myself.

11
flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
description = "A very basic flake";
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
defaultPackage.x86_64-linux = self.packages.x86_64-linux.hello;
};
}