initial flaking

This commit is contained in:
tristan 2025-05-22 13:18:59 -04:00
commit d0c72f5d3c
5 changed files with 286 additions and 0 deletions

19
flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosConfigurations = {
mini = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
};
}