games-night/flake.nix

26 lines
444 B
Nix
Raw Normal View History

2025-09-14 00:30:39 +02:00
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs =
inputs@{ self, nixpkgs }:
let
system = "x86_64-linux";
in
{
nixosConfigurations = {
server = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./hosts/server/configuration.nix
];
};
};
};
}