[tohru] Add current config to source control

This commit is contained in:
Katherina Walshe-Grey 2024-05-23 16:33:55 +01:00
parent 48736d890c
commit 755522b600
4 changed files with 185 additions and 0 deletions

14
flake.nix Normal file
View file

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