This commit is contained in:
Lucy von Overheidt 2025-09-14 00:30:39 +02:00
commit d3ee9f7205
4 changed files with 234 additions and 0 deletions

25
flake.nix Normal file
View file

@ -0,0 +1,25 @@
{
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
];
};
};
};
}