mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
12 lines
330 B
Nix
12 lines
330 B
Nix
{ 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 ];
|
|
};
|
|
}
|