nixos/home/programs.nix

84 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2026-03-03 20:15:06 +01:00
{
config,
pkgs,
2026-03-04 16:48:43 +01:00
inputs,
2026-03-03 20:15:06 +01:00
...
}:
{
home.packages = with pkgs; [
nixfmt
google-chrome
nemo
cava
pavucontrol
brightnessctl
hyprshot
evince
dconf
fd
ripgrep
ani-cli
2026-03-04 16:48:43 +01:00
element-desktop
gnome-tweaks
2026-03-04 21:43:27 +01:00
btop
ventoy
playerctl
2026-03-09 23:24:36 +01:00
impala
2026-03-04 16:48:43 +01:00
(discord.override {
2026-03-03 20:15:06 +01:00
withOpenASAR = true; # can do this here too
withVencord = true;
})
];
programs.obsidian = {
enable = true;
};
2026-03-03 20:15:06 +01:00
programs.git = {
enable = true;
settings = {
user.name = "lucy";
user.email = "lucykaufmann@protonmail.com";
};
};
programs.spicetify.enable = true;
programs.foot = {
enable = true;
settings = {
cursor = {
style = "underline";
};
main = {
pad = "14x14";
initial-window-size-pixels = "800x600";
};
};
};
programs.fuzzel = {
enable = true;
settings = {
main = {
lines = 10;
horizontal-pad = 30;
vertical-pad = 15;
};
border = {
width = 2;
radius = 0;
};
};
};
programs.vesktop = {
2026-03-04 16:48:43 +01:00
enable = false;
2026-03-03 20:15:06 +01:00
settings = {
staticTitle = true;
arRPC = true;
customTitleBar = false;
};
vencord.settings.plugins = {
MessageLogger.enabled = true;
MessageClickActions.enabled = true;
};
};
}