Files
nixos/hardware/default.nix

11 lines
162 B
Nix
Raw Normal View History

2026-03-12 23:38:13 +00:00
{ hostname, ... }:
2026-03-09 20:27:18 +00:00
{
imports = [
./disko.nix
2026-03-12 23:38:13 +00:00
./filesystem.nix
2026-03-15 17:04:38 +00:00
./mounts.nix
2026-03-12 23:38:13 +00:00
./${hostname}-hardware-configuration.nix
2026-03-09 20:27:18 +00:00
];
}