config/users/julia/cattop/home.nix.old
2025-07-04 23:44:41 -07:00

72 lines
1.2 KiB
Nix

{
inputs,
config,
pkgs,
lib,
userSettings,
systemSettings,
...
}:
{
home = {
stateVersion = "23.05"; # Please read the comment before changing.
packages = with pkgs; [
#building macos apps hard :(
ghostty
stremio
julia
qbittorrent
#gaming
bottles
lutris
mangohud
dxvk_2
steam-run
vulkan-tools
path-of-building
wineWowPackages.stable
winetricks
(prismlauncher.override { gamemodeSupport = true; })
#window manager stuff
wofi
xorg.xauth
#linux tools
legcord
pavucontrol
ethtool
grub2
efibootmgr
distrobox
xdg-desktop-portal-gtk
xclip
kdePackages.dolphin
hyfetch
arduino-cli
python3
gh
#broken on macos
calibre
mpv
wireguard-tools
signal-desktop
inputs.zls.packages.x86_64-linux.zls
rust-bin.stable.latest.default
];
# programs.mangohud.enable = true;
programs = {
btop.enable = true;
hyfetch.enable = true;
programs.gh = {
enable = true;
gitCredentialHelper = {
enable = true;
};
};
};
};
}