Switch to NixOS and various fixes

This commit is contained in:
Filippo Berto 2021-05-17 14:57:10 +02:00
parent c7df83869f
commit 0aae761f89
14 changed files with 222 additions and 130 deletions

10
modules/picom.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
services.picom = {
enable = true;
blur = true;
fade = true;
shadow = true;
vSync = true;
};
}