17 lines
187 B
Nix
17 lines
187 B
Nix
{
|
|
hostname,
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
outputs.nixosModules.default
|
|
];
|
|
|
|
networking.hostName = hostname;
|
|
}
|