nixos-configs/nixos/home/packages.nix

126 lines
2.3 KiB
Nix
Raw Normal View History

2023-06-26 17:29:17 -04:00
{ pkgs, ... }:
{
programs = {
2023-09-21 17:10:25 -04:00
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
];
};
btop.enable = true;
jq.enable = true;
ripgrep = {
enable = true;
};
2023-10-03 12:42:55 -04:00
java = {
enable = true;
package = pkgs.temurin-bin-17;
};
2023-06-26 17:29:17 -04:00
};
2023-09-29 23:46:34 -04:00
home.packages = with pkgs;
2023-06-26 17:29:17 -04:00
(with python311Packages; [
python
pyclip
2023-07-23 10:47:56 -04:00
]) ++
(with nodePackages; [
undollar
2023-06-26 17:29:17 -04:00
]) ++
(with plasma5Packages; [
polkit-kde-agent
2023-09-29 23:46:34 -04:00
ark
kcharselect
kdenlive
okular
# Dolphin & co
2023-06-26 17:29:17 -04:00
dolphin
dolphin-plugins
kdegraphics-thumbnailers
2023-06-26 17:29:17 -04:00
ffmpegthumbs
kio
2023-06-26 17:29:17 -04:00
kio-admin # needs to be both here and in system pkgs
kio-extras
2023-06-26 17:29:17 -04:00
kmime
]) ++
(with gnome; [
gnome-calculator
seahorse
2023-09-29 23:46:34 -04:00
]) ++ [
2023-09-12 08:02:35 -04:00
# School
2023-09-25 23:07:55 -04:00
virt-manager
2023-09-19 23:23:19 -04:00
gradle
gradle-completion # FIXME: not working
2023-09-12 08:02:35 -04:00
#camunda-modeler
2023-09-29 23:46:34 -04:00
# Misc Apps
thunderbird # TODO: use programs.thunderbird
firefox # TODO: use programs.firefox
spotifywm
2023-06-26 17:29:17 -04:00
zeal
libreoffice-fresh # TODO: add spelling stuff
photoqt
gimp-with-plugins
vlc
discord
nextcloud-client
# Misc CLI
neofetch
qt5.qtwayland
qt6.qtwayland
acpi
progress
2023-06-26 17:29:17 -04:00
alsa-utils
wget
tree
mosh
rsync
killall
fontfor
imagemagick
usbutils
(writeShellScriptBin "Gparted" ''
(
sleep 1.5
while killall -r -0 ksshaskpass > /dev/null 2>&1
do
sleep 0.1
if [[ $(hyprctl activewindow | grep Ksshaskpass) == "" ]]; then
killall -r ksshaskpass
fi
done
) &
exec env SUDO_ASKPASS=${pkgs.plasma5Packages.ksshaskpass}/bin/${pkgs.plasma5Packages.ksshaskpass.pname} sudo -k -EA "${gparted}/bin/${gparted.pname}" "$@"
'')
2023-06-26 17:29:17 -04:00
];
xdg.desktopEntries.gparted = {
name = "GParted";
genericName = "Partition Editor";
comment = "Create, reorganize, and delete partitions";
exec = "Gparted";
icon = "gparted";
terminal = false;
type = "Application";
categories = [ "GNOME" "System" "Filesystem" ];
startupNotify = true;
settings = {
Keywords = "Partition";
X-GNOME-FullName = "GParted Partition Editor";
};
};
2023-06-26 17:29:17 -04:00
}