102 lines
2.1 KiB
Nix
102 lines
2.1 KiB
Nix
{ pkgs, nixpkgs-wayland, ... }: let
|
|
waypkgs = nixpkgs-wayland.packages.x86_64-linux;
|
|
in {
|
|
programs = {
|
|
|
|
obs-studio = {
|
|
enable = true;
|
|
plugins = with waypkgs; [
|
|
obs-wlrobs
|
|
];
|
|
};
|
|
|
|
btop.enable = true;
|
|
};
|
|
|
|
home.packages = (with pkgs.python311Packages; [
|
|
python
|
|
pyclip
|
|
]) ++
|
|
|
|
(with pkgs.plasma5Packages; [
|
|
polkit-kde-agent
|
|
ark
|
|
kcharselect
|
|
kdenlive
|
|
okular
|
|
|
|
# Dolphin & co
|
|
dolphin
|
|
dolphin-plugins
|
|
kdegraphics-thumbnailers
|
|
ffmpegthumbs
|
|
kio
|
|
kio-admin # needs to be both here and in system pkgs
|
|
kio-extras
|
|
kmime
|
|
]) ++
|
|
|
|
(with pkgs.gnome; [
|
|
gnome-calculator
|
|
seahorse
|
|
]) ++
|
|
|
|
(with pkgs; [
|
|
# School
|
|
virt-manager
|
|
bluej
|
|
#camunda-modeler
|
|
|
|
# Misc Apps
|
|
thunderbird # TODO: use programs.thunderbird
|
|
spotifywm
|
|
zeal
|
|
libreoffice-fresh # TODO: add spelling stuff and declarative conf?
|
|
photoqt
|
|
gimp-with-plugins # TODO: set plugins using nix
|
|
vlc
|
|
nextcloud-client
|
|
jellyfin-media-player
|
|
xournalpp
|
|
(pkgs.discord.override {
|
|
withOpenASAR = true;
|
|
withVencord = true;
|
|
})
|
|
prismlauncher-qt5
|
|
|
|
# Misc CLI
|
|
acpi
|
|
alsa-utils
|
|
fontfor
|
|
|
|
(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}" "$@"
|
|
'')
|
|
]);
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|