15 lines
186 B
Nix
15 lines
186 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# important for later, trust me
|
|
networking.hostName = "sakoserver";
|
|
}
|