nix-dotfiles/hosts/randolph/home.nix

28 lines
380 B
Nix

# randolph
{ pkgs, ... }:
{
imports = [
../../snippets/common_home.nix
];
home.stateVersion = "23.11";
# Configure cursor
home.pointerCursor.size = 256;
# Install packages
home.packages = with pkgs;
[ ] ++ # Temp
[ ];
services.batsignal = {
enable = true;
extraArgs = [
"-w 20"
"-c 10"
"-d 3"
];
};
}