Files
nixcfg/users/daniel/host-specific/pingbox/default.nix
2022-05-10 00:50:27 +01:00

22 lines
237 B
Nix

{
config,
lib,
pkgs,
...
}: {
home = {
file = {
"wallpapers" = {
source = ./wallpapers;
};
};
};
programs.kitty.font.size = 17;
services.picom = {
enable = true;
vSync = true;
};
}