Files
haschel/flake.nix
Atridad Lahiji 66bc547abe
All checks were successful
Deploy Haschel / deploy (push) Successful in 48s
Try these now
2026-02-11 22:58:28 -07:00

22 lines
454 B
Nix

{
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
];
};
};
}