13 lines
301 B
Nix
13 lines
301 B
Nix
{
|
|
network = { description = "Main dev server"; };
|
|
|
|
plato = { config, pkgs, ... }: {
|
|
imports = [ ../hosts/plato/configuration.nix ];
|
|
networking.hostName = "plato";
|
|
nixpkgs.system = "x86_64-linux";
|
|
|
|
deployment.targetHost = "192.168.6.102";
|
|
deployment.targetUser = "root";
|
|
};
|
|
}
|