Files
nixcfg/users/daniel/host-specific/pingbox/default.nix
2025-05-09 00:22:34 +01:00

29 lines
324 B
Nix

{
config,
lib,
pkgs,
...
}: {
home = {
file = {
"wallpapers" = {
source = ./wallpapers;
};
};
};
home.packages = with pkgs; [
moonlight-qt
];
programs.kitty.font.size = 12;
services.picom = {
vSync = true;
};
services.easyeffects = {
enable = true;
};
}