Files
nixcfg/users/daniel/host-specific/pingbox/default.nix
2025-04-21 15:00:48 +01:00

30 lines
329 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;
};
}