15 lines
157 B
Nix
15 lines
157 B
Nix
{ config, lib, pkgs, ...}:
|
|
|
|
{
|
|
services.picom = {
|
|
enable = true;
|
|
vSync = true;
|
|
};
|
|
|
|
home.file = {
|
|
wallpapers = {
|
|
source = ./wallpapers;
|
|
};
|
|
};
|
|
}
|