config/users/fish/cattop/home.nix

64 lines
1.1 KiB
Nix
Raw Permalink 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
signal-desktop
2025-08-18 18:34:01 -07:00
spotify
2025-08-31 16:54:23 -07:00
inputs.zen-browser.packages.x86_64-linux.default
legcord
2025-07-04 23:44:41 -07:00
# Gaming
(prismlauncher.override { gamemodeSupport = true; })
2025-08-31 16:54:23 -07:00
bsdgames
space-cadet-pinball
2025-07-04 23:44:41 -07:00
# System & desktop tools
wofi
xorg.xauth
kdePackages.dolphin
xdg-desktop-portal-gtk
xclip
pavucontrol
ethtool
grub2
efibootmgr
2025-08-18 18:34:01 -07:00
pqiv
2025-08-31 16:54:23 -07:00
imagemagick
2025-07-04 23:44:41 -07:00
# Dev tools
hyfetch
2025-08-31 16:54:23 -07:00
python3
gh
cmake
2025-08-18 18:34:01 -07:00
# Unsorted
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;
2025-08-31 16:54:23 -07:00
background-opacity = 0.95;
2025-08-30 22:14:23 -07:00
background-blur = true;
};
};
2025-07-04 23:44:41 -07:00
};
}