feat: initial commit

This commit is contained in:
2024-11-23 21:35:39 +01:00
commit 28590f35e1
11 changed files with 273 additions and 0 deletions

15
flake.nix Normal file
View File

@ -0,0 +1,15 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
};
outputs = inputs @ { self, nixpkgs }: {
nixosConfigurations.affogato = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/affogato
];
specialArgs = { inherit inputs; };
};
};
}