config/users/fish/cattop/home.nix

71 lines
1.2 KiB
Nix
Raw Normal View History

2025-08-30 22:14:23 -07:00
{ pkgs, ... }:
2025-07-04 23:44:41 -07:00
{
home = {
stateVersion = "23.05"; # Don't change this unless upgrading Home Manager versions
packages = with pkgs; [
# General applications
ghostty
stremio
julia
calibre
mpv
signal-desktop
python3
gh
2025-08-18 18:34:01 -07:00
spotify
2025-07-04 23:44:41 -07:00
# Gaming
(prismlauncher.override { gamemodeSupport = true; })
# System & desktop tools
wofi
xorg.xauth
kdePackages.dolphin
xdg-desktop-portal-gtk
xclip
pavucontrol
ethtool
grub2
efibootmgr
distrobox
2025-08-18 18:34:01 -07:00
pqiv
2025-07-04 23:44:41 -07:00
# Dev tools
legcord
hyfetch
2025-08-18 18:34:01 -07:00
kicad
# Unsorted
ripgrep
busybox
imagemagick
2025-07-04 23:44:41 -07:00
];
};
programs = {
btop.enable = true;
2025-08-30 22:14:23 -07:00
fish.enable = true;
2025-07-04 23:44:41 -07:00
hyfetch.enable = true;
gh = {
enable = true;
gitCredentialHelper.enable = true;
};
2025-08-30 22:14:23 -07:00
ghostty = {
enable = true;
shader = "cursor-smear-black.glsl";
settings = {
theme = "citruszest";
adjust-cursor-thickness = 1;
background-opacity = 0.9;
background-blur = true;
};
};
2025-07-04 23:44:41 -07:00
# Uncomment if you want to use MangoHud system-wide
# mangohud.enable = true;
};
}