14 lines
224 B
Nix
14 lines
224 B
Nix
{...}: {
|
|
flake.nixosModules.server02Configuration = {...}: {
|
|
networking = {
|
|
hostName = "server02";
|
|
};
|
|
swapDevices = [
|
|
{
|
|
device = "/swapfile";
|
|
size = 16 * 1024;
|
|
}
|
|
];
|
|
};
|
|
}
|