Files
nixcfg/user/host-specific/pingbox/default.nix
2022-03-25 22:22:02 +00:00

23 lines
259 B
Nix

{ config, lib, pkgs, ...}:
{
home = {
file = {
"wallpapers" = {
source = ./wallpapers;
};
};
packages = with pkgs; [
jetbrains.goland
];
};
programs.kitty.font.size = 19;
services.picom = {
enable = true;
vSync = true;
};
}