15 lines
265 B
Nix
15 lines
265 B
Nix
{...}: {
|
|
flake.nixosModules.server02Configuration = {...}: {
|
|
networking = {
|
|
hostName = "server02";
|
|
};
|
|
virtualisation.docker.enable = true;
|
|
swapDevices = [
|
|
{
|
|
device = "/swapfile";
|
|
size = 16 * 1024;
|
|
}
|
|
];
|
|
};
|
|
}
|