11 lines
132 B
Nix
11 lines
132 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.marleycfg.profiles.desktop {
|
|
qt = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|