nix-server/flake.nix
2023-08-09 21:05:37 -07:00

27 lines
465 B
Nix

{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "aarch64-linux";
pkgs = import nixpkgs {
allowUnfree = true;
};
in
{
nixosConfigurations = {
server = nixpkgs.lib.nixosSystem {
specialArgs = { inherit system; };
modules = [
./hosts/server/configuration.nix
];
};
};
};
}