2023-05-31 14:32:33 +02:00
|
|
|
{ self, pkgs, ... }:
|
2022-12-19 19:30:32 +01:00
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
2023-02-17 21:35:12 +01:00
|
|
|
|
2022-12-19 19:30:32 +01:00
|
|
|
# essentials
|
2023-05-25 14:48:24 +02:00
|
|
|
(wpa_supplicant_gui.overrideAttrs (prev: {
|
|
|
|
# better desktop application name. "wpa_gui" kinda sucks
|
|
|
|
postInstall = prev.postInstall + ''
|
|
|
|
|
2023-05-26 00:01:59 +02:00
|
|
|
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=Manage Wifi"
|
2023-05-25 14:48:24 +02:00
|
|
|
'';
|
|
|
|
})) # manage wifi
|
2023-05-28 13:15:29 +02:00
|
|
|
pcmanfm
|
2023-02-25 22:28:04 +01:00
|
|
|
xdg-utils # used for xdg-open
|
2023-02-16 22:25:26 +01:00
|
|
|
snapper-gui
|
2022-12-19 19:30:32 +01:00
|
|
|
|
|
|
|
# graphics
|
2023-02-25 22:28:04 +01:00
|
|
|
evince # pdf viewer
|
2022-12-19 19:30:32 +01:00
|
|
|
gimp
|
2023-02-12 11:20:34 +01:00
|
|
|
ffmpeg
|
2022-12-19 19:30:32 +01:00
|
|
|
|
|
|
|
# sound
|
|
|
|
pavucontrol
|
2023-05-14 22:04:06 +02:00
|
|
|
x32edit
|
2022-12-19 19:30:32 +01:00
|
|
|
|
|
|
|
# bluetooth
|
|
|
|
blueman
|
|
|
|
|
|
|
|
# internet
|
|
|
|
google-chrome
|
|
|
|
|
|
|
|
# messaging
|
2023-01-01 21:30:41 +01:00
|
|
|
discord
|
2022-12-19 19:30:32 +01:00
|
|
|
tdesktop
|
|
|
|
element-desktop
|
2023-05-19 11:42:43 +02:00
|
|
|
gomuks # alternative matrix client
|
2022-12-19 19:30:32 +01:00
|
|
|
|
|
|
|
# games
|
2023-05-23 20:51:02 +02:00
|
|
|
prismlauncher # minecraft, but it actually works # not anymore lol
|
2022-12-19 19:30:32 +01:00
|
|
|
superTuxKart
|
|
|
|
|
|
|
|
# yubikey and password stuff
|
2023-03-04 12:53:59 +01:00
|
|
|
yubikey-manager
|
|
|
|
yubikey-manager-qt
|
2023-05-18 21:51:15 +02:00
|
|
|
yubioath-flutter
|
2023-05-21 13:50:49 +02:00
|
|
|
bitwarden
|
|
|
|
pass
|
2022-12-19 19:30:32 +01:00
|
|
|
|
|
|
|
# misc
|
2023-06-01 22:49:21 +02:00
|
|
|
asciinema
|
2023-02-25 22:28:04 +01:00
|
|
|
neofetch # obligatory
|
2022-12-19 19:30:32 +01:00
|
|
|
virt-manager
|
2023-04-29 13:33:12 +02:00
|
|
|
jetbrains.idea-community
|
2023-05-21 13:50:49 +02:00
|
|
|
powerline-fonts
|
2023-05-08 11:23:04 +02:00
|
|
|
croc # send files anywhere
|
2023-02-25 16:30:02 +01:00
|
|
|
|
2023-05-21 13:50:49 +02:00
|
|
|
# programming languages
|
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
rustfmt
|
2023-05-22 16:14:03 +02:00
|
|
|
gcc
|
2023-05-31 14:32:33 +02:00
|
|
|
self.packages.x86_64-linux.adguardian-term
|
2023-02-25 16:30:02 +01:00
|
|
|
|
2022-12-19 19:30:32 +01:00
|
|
|
# libs
|
|
|
|
libyubikey
|
|
|
|
libfido2
|
2023-05-06 22:22:05 +02:00
|
|
|
# (pkgs.texlive.combine {
|
|
|
|
# inherit (pkgs.texlive) scheme-medium;
|
|
|
|
# })
|
2022-12-19 19:30:32 +01:00
|
|
|
];
|
2023-02-28 15:05:07 +01:00
|
|
|
|
2023-02-04 22:46:46 +01:00
|
|
|
xdg.mimeApps = {
|
|
|
|
enable = true;
|
|
|
|
defaultApplications =
|
|
|
|
let
|
|
|
|
image-viewers = [ "imv.desktop" "gimp.desktop" "swappy.desktop" "org.qutebrowser.qutebrowser.desktop" "google-chrome.desktop" ];
|
2023-05-29 14:36:54 +02:00
|
|
|
browsers = [ "google-chrome.desktop" "org.qutebrowser.qutebrowser.desktop" ];
|
2023-02-04 22:46:46 +01:00
|
|
|
in
|
|
|
|
{
|
|
|
|
"application/pdf" = [ "org.gnome.Evince.desktop" ];
|
|
|
|
"image/png" = image-viewers;
|
|
|
|
"image/jpg" = image-viewers;
|
|
|
|
"image/jpeg" = image-viewers;
|
|
|
|
"image/tiff" = image-viewers;
|
|
|
|
"image/gif" = image-viewers;
|
|
|
|
"image/webp" = image-viewers;
|
|
|
|
"image/ico" = image-viewers;
|
|
|
|
"x-scheme-handler/http" = browsers;
|
|
|
|
"x-scheme-handler/https" = browsers;
|
|
|
|
};
|
|
|
|
};
|
2022-12-19 19:30:32 +01:00
|
|
|
}
|