11 lines
222 B
Nix
11 lines
222 B
Nix
{ config, pkgs, deployment, ... }: {
|
|
imports = [ ../../common ../../common/lxc.nix ];
|
|
networking.hostName = "registry";
|
|
system.stateVersion = "21.11";
|
|
|
|
deployment.keys."wahaha" = {
|
|
text = "wahaha";
|
|
|
|
};
|
|
}
|