names are fun. for a few weeks i've been presenting publicly with the name 'clover', and i like it a lot. for me it's sort of a name tier, where friends can call me chloe for short, but my full name is clover. (and for people very close to me, there's more names to unlock). julia to fish is from a misunderstanding. i used the name julia with her a lot because it sounded more like a usual name, so i assumed it was. but no, that's just a nickname. an extra option. her preferred name is fish. simple as. i am sorry for this confusion.
77 lines
1.3 KiB
Nix
77 lines
1.3 KiB
Nix
{
|
|
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
|
|
qbittorrent
|
|
calibre
|
|
mpv
|
|
signal-desktop
|
|
python3
|
|
gh
|
|
|
|
# Gaming
|
|
bottles
|
|
lutris
|
|
mangohud
|
|
dxvk_2
|
|
steam-run
|
|
vulkan-tools
|
|
path-of-building
|
|
wineWowPackages.stable
|
|
winetricks
|
|
(prismlauncher.override { gamemodeSupport = true; })
|
|
|
|
# System & desktop tools
|
|
wofi
|
|
xorg.xauth
|
|
kdePackages.dolphin
|
|
xdg-desktop-portal-gtk
|
|
xclip
|
|
pavucontrol
|
|
ethtool
|
|
grub2
|
|
efibootmgr
|
|
distrobox
|
|
|
|
# Dev tools
|
|
legcord
|
|
hyfetch
|
|
arduino-cli
|
|
rust-bin.stable.latest.default
|
|
tytools
|
|
inputs.zls.packages.x86_64-linux.zls
|
|
platformio
|
|
usbutils
|
|
teensy-loader-cli
|
|
teensyduino
|
|
];
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|