10 lines
132 B
Nix
10 lines
132 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf config.local.profiles.desktop.enable {
|
||
|
services.flatpak.enable = true;
|
||
|
};
|
||
|
}
|