nix-dotfiles/hosts/randolph/home.nix

34 lines
522 B
Nix

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