13 lines
176 B
Nix
13 lines
176 B
Nix
|
|
{ ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports = [
|
||
|
|
./hardware-configuration.nix
|
||
|
|
./system-configuration.nix
|
||
|
|
../default.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
networking.hostName = "robin";
|
||
|
|
networking.hostId = "";
|
||
|
|
}
|