config/users/fish/cattop/home.nix

68 lines
1 KiB
Nix
Raw Normal View History

2025-07-04 23:44:41 -07:00
{
inputs,
config,
pkgs,
lib,
userSettings,
systemSettings,
...
}:
{
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;
hyfetch.enable = true;
gh = {
enable = true;
gitCredentialHelper.enable = true;
};
# Uncomment if you want to use MangoHud system-wide
# mangohud.enable = true;
};
}