nixos/modules/desktop/picom/default.nix
2023-08-03 16:22:07 +03:00

16 lines
280 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.picom;
in
{
options.modules.desktop.picom = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
picom
];
};
}