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

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