infrastructure/config/profiles/hardware/laptop/default.nix
2021-09-04 01:14:17 +01:00

11 lines
156 B
Nix

{ ... }: {
imports = [
({ config, ... }: {
deploy.profile.hardware.laptop = true;
imports = [
./light.nix
];
})
];
}