mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
7 lines
144 B
Nix
7 lines
144 B
Nix
{ config, lib, ... }:
|
|
|
|
let inherit (import ../../options.nix) flatpak; in
|
|
lib.mkIf ("${flatpak}" == "on") {
|
|
services.flatpak.enable = true;
|
|
}
|