nix/home/all.nix

97 lines
1.8 KiB
Nix
Executable file

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
# cli utilities
tmux
fastfetch
btop
killall
wget
ripgrep
ncdu
fzf
wl-clipboard
rclone
waypipe
spotdl
browsh
mosh
# development & tooling
gh
deno
prettier
prettierd
nixfmt-rfc-style
jdk21_headless
# kde and kde theming
kde-rounded-corners
kdePackages.partitionmanager
colloid-icon-theme
# gui applications
vesktop
input-leap
libreoffice-qt-fresh
# helium-browser
bitwarden-desktop
qbittorrent
# gui applications ( games )
openmw
prismlauncher
# gui applications ( multimedia )
audacity
strawberry
musescore
mpv
gimp
calibre
spotify-player
# browsers
# (chromium.override {
# enableWideVine = true;
# })
];
services = {
spotifyd = {
enable = true;
settings = {
global = {
device_type = "computer";
dbus_type = "session";
disable_discovery = true;
use_mpris = true;
bitrate = 320;
initial_volume = 100;
volume_normalisation = true;
normalisation_pregain = -10;
};
};
};
};
catppuccin = {
enable = false;
cursors.enable = false;
cache.enable = true;
};
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "25.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}