Nixos-Configuration/configurations/nixos/caddy/default.nix
Jermeiah S 8b992b53d8
Some checks failed
/ check (push) Successful in 42s
/ deploy (push) Failing after 3s
deploy: test new keys
2025-06-20 14:17:12 -04:00

27 lines
397 B
Nix

{
flake,
modulesPath,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
deploy = {
enable = false;
address = "unknown.local";
};
networking = {
hostName = "caddy";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}