spectre_nixcfg/home.nix
2025-09-07 20:28:12 -04:00

99 lines
1.7 KiB
Nix

{ lib, pkgs, config, ... }:
{
imports = [
./sway/sway.nix
./emacs/emacs.nix
];
# Cursor
home.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
home.username = "nat";
home.homeDirectory = "/home/nat";
home.packages = with pkgs; [
audacity
beluga
bitwarden
clifm
darktable
gimp
godot
hledger
inkscape
libreoffice
lmms
mumble
picard
prismlauncher
signal-desktop
texliveFull
vlc
xournalpp
] ++ [
julia-mono
noto-fonts
redhat-official-fonts
overpass
rubik
roboto
openmoji-black
openmoji-color
];
fonts.fontconfig = {
enable = true;
defaultFonts = {
sansSerif = [ "Rubik" "Noto Sans" "DejaVu Sans" ];
serif = [ "Noto Serif" "DejaVu Serif" ];
monospace = [ "Noto Mono" ];
emoji = [ "OpenMoji" ];
};
};
services.blueman-applet.enable = true;
services.copyq.enable = true;
services.playerctld.enable = true;
services.remmina.enable = true;
programs.firefox.enable = true;
programs.thunderbird = {
enable = true;
profiles = { main = { isDefault = true; }; };
};
programs.bash.enable = true;
programs.obs-studio.enable = true;
# Terminal
programs.alacritty = {
enable = true;
settings = {
font = {
normal= {
family = "juliaMono";
style = "Regular";
};
};
};
};
# Notifications
services.mako = {
enable = true;
};
home.sessionVariables = {
EDITOR = "kak";
LEDGER_FILE = "~/Documents/Accounting/hledger.journal";
};
home.stateVersion = "25.05";
}