nix-config/hosts/default.nix

9 lines
93 B
Nix
Raw Normal View History

2024-09-19 17:12:09 +02:00
{ hostname, type, ... }:
2024-05-12 16:27:17 +02:00
{
imports = [
./common
2024-07-06 21:33:59 +02:00
./${type}
./${hostname}
2024-05-12 16:27:17 +02:00
];
2024-09-19 17:12:09 +02:00
}