Initial minimal NixOS config for syncala

This commit is contained in:
dhrm
2026-08-25 19:20:24 +02:00
commit aff15c4ac7
3 changed files with 34 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
description = "Minimal NixOS configuration for syncala hosts";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: {
nixosConfigurations.syncala = nixpkgs.lib.nixosSystem {
modules = [ ./configuration.nix ];
};
};
}