initial commit

This commit is contained in:
uku 2023-08-29 13:23:48 +02:00
commit 07c036f44c
4 changed files with 215 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "example flake idk";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = inputs: {
nixosConfigurations.miguel = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [./configuration.nix];
specialArgs = inputs;
};
};
}