nix/nixos/containers/default.nix

12 lines
252 B
Nix
Raw Normal View History

2024-03-21 10:51:41 +01:00
{ hostname, username, ... }: {
import = [
./${hostname}
../users/${username}
../common/modules/nixos.nix
../common/modules/networking.nix
../common/services/tailscale-autoconnect.nix
];
networking.hostname = "${hostname}";
}