73 lines
1.2 KiB
Nix
73 lines
1.2 KiB
Nix
{ pkgs, agenix, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Desktop Communcation
|
|
element-desktop
|
|
signal-desktop
|
|
telegram-desktop
|
|
vesktop
|
|
|
|
# Desktop Productivity
|
|
firefox
|
|
google-chrome
|
|
obsidian
|
|
thunderbird
|
|
zoom-us # work :{
|
|
|
|
# Desktop Utilities
|
|
ausweisapp
|
|
bitwarden-desktop
|
|
diebahn
|
|
drawio
|
|
|
|
# Desktop Media things
|
|
mpv-unwrapped
|
|
kdePackages.gwenview
|
|
|
|
# Desktop game things
|
|
openttd-jgrpp
|
|
openttd-ttf
|
|
|
|
# Terminal applications
|
|
gh # github
|
|
easyeffects
|
|
hyfetch
|
|
fastfetch
|
|
ranger
|
|
nautilus
|
|
fido2-manage
|
|
unzip
|
|
pandoc
|
|
file-roller
|
|
wifi-qr
|
|
|
|
# For Hyprland hotkeys:
|
|
brightnessctl
|
|
playerctl
|
|
hyprshot
|
|
pavucontrol
|
|
networkmanagerapplet
|
|
|
|
# nix-tools
|
|
nix-output-monitor
|
|
nil
|
|
nh
|
|
agenix.packages.${system}.default
|
|
nixfmt-rfc-style
|
|
|
|
# Dev Things
|
|
vscodium
|
|
android-studio
|
|
jetbrains.datagrip
|
|
jetbrains.idea-ultimate
|
|
jetbrains.jdk
|
|
jetbrains.pycharm-professional
|
|
jetbrains.rust-rover
|
|
jetbrains.webstorm
|
|
wireshark
|
|
devenv
|
|
];
|
|
|
|
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
|
|
|
|
}
|