Initial commit

This commit is contained in:
Alexander Kobjolke 2021-07-09 08:17:22 +00:00
commit 614b5ca368
4 changed files with 204 additions and 0 deletions

13
flake.nix Normal file
View file

@ -0,0 +1,13 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.05-small";
outputs = { self, nixpkgs }: {
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules =
[ ./configuration.nix ];
};
};
}