17 lines
200 B
Nix
17 lines
200 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./modules.nix
|
|
];
|
|
|
|
networking.hostName = "luna";
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|