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
390 B
Nix
Raw Normal View History

2022-04-29 02:10:00 +00:00
{ config, lib, pkgs, ... }:
let
2022-05-03 04:10:06 +00:00
cfg = config.this.application.i3.picom;
2022-04-29 02:10:00 +00:00
i3 = config.this.application.i3;
in with lib; {
options = {
2022-05-03 04:10:06 +00:00
this.application.i3.picom.enable = mkOption {
2022-04-29 02:10:00 +00:00
default = i3.enable;
type = with types; bool;
};
};
config = mkIf cfg.enable {
services.picom = {
enable = true;
backend = "glx";
vSync = true;
};
};
}