11 lines
178 B
Nix
11 lines
178 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../os
|
||
|
./options.nix
|
||
|
];
|
||
|
|
||
|
# Create a different disk image depending on the architecture
|
||
|
networking.hostName = "${builtins.currentSystem}";
|
||
|
}
|