nix/nixos/containers/default.nix

11 lines
204 B
Nix
Raw Normal View History

2024-03-21 10:51:41 +01:00
{ hostname, username, ... }: {
2024-03-21 12:27:53 +01:00
imports = [
2024-03-21 10:51:41 +01:00
./${hostname}
../users/${username}
../common/modules/nixos.nix
../common/modules/networking.nix
];
2024-03-21 12:27:53 +01:00
networking.hostName = "${hostname}";
2024-03-21 10:51:41 +01:00
}