This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/applications/i3/picom.nix

22 lines
384 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.this.application.picom;
i3 = config.this.application.i3;
in with lib; {
options = {
this.application.picom.enable = mkOption {
default = i3.enable;
type = with types; bool;
};
};
config = mkIf cfg.enable {
services.picom = {
enable = true;
backend = "glx";
vSync = true;
};
};
}