diff options
author | Vincent Ambo <mail@tazj.in> | 2021-11-13T20·18+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-11-13T21·09+0000 |
commit | 1ef8a6c1532d09a0079de2b798f509dcda1dc49a (patch) | |
tree | 3fb80d07dbf5e2fb449227ace59612cde9d0451a /users/tazjin/nixos/tverskoy/default.nix | |
parent | 1cdc488f19430e5076a37e1f9757b4a499921132 (diff) |
feat(tazjin/tverskoy): Enable picom by default r/3066
... rather than launching it manually in a shell when I need it, which is more often now that I have a large screen. Change-Id: Ia526af98e513d29e70aeb093442465dce256c333 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3874 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/nixos/tverskoy/default.nix')
-rw-r--r-- | users/tazjin/nixos/tverskoy/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index 61edf9f831ff..62dd8fe631d2 100644 --- a/users/tazjin/nixos/tverskoy/default.nix +++ b/users/tazjin/nixos/tverskoy/default.nix @@ -277,7 +277,6 @@ in lib.fix(self: { paperlike-go pass pavucontrol - picom pinentry pinentry-emacs pulseaudioLight # for pactl @@ -369,6 +368,12 @@ in lib.fix(self: { services.dunst.enable = true; + services.picom = { + enable = true; + vSync = true; + backend = "glx"; + }; + xdg.configFile."dunst/dunstrc" = { source = depot.users.tazjin.dotfiles.dunstrc; onChange = '' |