summaryrefslogblamecommitdiffstats
path: root/modules/desktop/picom.nix
blob: 7afe2f042dd6e42b95d82eb47cdec3e9f0ad1fb1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                           
{ config, lib, pkgs, user, ... }:
with lib;
{
    config = mkIf (config.xserver.enable) {
        services.picom = {
            enable = true;
            settings = {
                backend = "glx";
                corner-radius = 10;
            };
        };
    };
}