nix-dotfiles/hosts/randolph/home.nix

34 lines
522 B
Nix
Raw Normal View History

# randolph
{ pkgs, ... }:
2024-01-04 21:21:04 -05:00
rec {
imports = [
../../snippets/common_home.nix
];
2024-01-04 21:21:04 -05:00
home.stateVersion = "23.11";
2024-01-10 10:26:07 -05:00
# Configure cursor
home.pointerCursor.size = 256;
2024-01-10 10:26:07 -05:00
# 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"
];
};
2024-01-23 10:46:07 -05:00
}