mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-01 19:13:09 +01:00
7 lines
139 B
Nix
7 lines
139 B
Nix
{ config, lib, ... }:
|
|
|
|
let inherit (import ../../options.nix) flatpak; in
|
|
lib.mkIf (flatpak == true) {
|
|
services.flatpak.enable = true;
|
|
}
|