1
0
Fork 0
forked from autowolf/nix
ashley-nix/home.nix
2026-02-23 12:15:31 +10:00

44 lines
699 B
Nix

{
inputs,
pkgs,
...
}: {
imports = [
./modules/neovim/nixcats.nix
./modules/waybar/default.nix
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
vesktop
brightnessctl
playerctl
librewolf
hyfetch
kitty
kittysay
nerd-fonts.departure-mono
];
programs = {
kitty = {
enable = true;
font = {
name = "DepartureMono Nerd Font Mono";
size = 7;
};
settings = {
scrollback_lines = 16384;
enable_audio_bell = false;
update_check_interval = 0;
confirm_os_window_close = 0; # disable close window prompt
};
};
};
home.stateVersion = "25.11";
}