12 lines
211 B
Nix
12 lines
211 B
Nix
{...}: {
|
|
flake.nixosModules.server02Configuration = {...}: {
|
|
networking = {
|
|
hostName = "server02";
|
|
};
|
|
imports = [
|
|
# ./_hardware-configuration.nix
|
|
./_disk-config.nix
|
|
];
|
|
};
|
|
}
|