This commit is contained in:
2026-02-06 18:30:57 -07:00
commit 8fa4b314b0
10 changed files with 488 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
description = "Haschel Proxy Server";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs, ... }@inputs:
let
settings = import ./settings.nix;
system = "x86_64-linux";
in {
nixosConfigurations."${settings.hostname}" = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
];
};
};
}