9 lines
142 B
Nix
9 lines
142 B
Nix
{osConfig, ...}: {
|
|
imports =
|
|
[./cli.nix]
|
|
++ (
|
|
if osConfig.hm-pedro.de != "none"
|
|
then [./gui.nix]
|
|
else []
|
|
);
|
|
}
|