12 lines
252 B
Nix
12 lines
252 B
Nix
|
{ hostname, username, ... }: {
|
||
|
import = [
|
||
|
./${hostname}
|
||
|
../users/${username}
|
||
|
../common/modules/nixos.nix
|
||
|
../common/modules/networking.nix
|
||
|
../common/services/tailscale-autoconnect.nix
|
||
|
];
|
||
|
|
||
|
networking.hostname = "${hostname}";
|
||
|
}
|