mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
6 lines
174 B
Nix
6 lines
174 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.myConfig.flatpak.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.flatpak.enable { services.flatpak.enable = true; };
|
|
}
|