nix-config/hosts/default.nix

8 lines
98 B
Nix
Raw Normal View History

2024-07-06 21:33:59 +02:00
{ pkgs, 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
];
}