Files
haschel/flake.nix
Atridad Lahiji 788a58d06b
Some checks failed
Deploy NixOS / deploy (push) Failing after 2m59s
Moved to unstable
2026-02-14 12:43:37 -07:00

22 lines
457 B
Nix

{
description = "Haschel Proxy Server";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
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
];
};
};
}