initial
This commit is contained in:
commit
252814b193
20 changed files with 1531 additions and 0 deletions
42
home.nix
Normal file
42
home.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{ 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";
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue