partial host migrations to flake parts

This commit is contained in:
Callum Leslie 2026-04-22 21:28:05 +01:00
parent 1f779fff49
commit 091cfbdf96
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
13 changed files with 209 additions and 165 deletions

12
modules/hosts/hermes.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, inputs, ... }:
{
flake.nixosConfigurations.hermes = config.flake.lib.mkHost {
modules = [
config.flake.nixosModules.profile-server
inputs.nocodb.nixosModules.nocodb
inputs.copyparty.nixosModules.default
../../hosts/hermes
];
overlays = [ inputs.copyparty.overlays.default ];
};
}