2022-06-03 23:36:40 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
evince
|
2022-12-25 12:11:29 +01:00
|
|
|
firefox
|
|
|
|
ghostwriter
|
2022-06-03 23:36:40 +02:00
|
|
|
(gimp-with-plugins.override {
|
|
|
|
plugins = with gimpPlugins; [
|
|
|
|
resynthesizer
|
|
|
|
];
|
|
|
|
})
|
|
|
|
keepassxc
|
|
|
|
libreoffice
|
2022-12-25 12:11:29 +01:00
|
|
|
(mpv.override {
|
|
|
|
scripts = with mpvScripts; [
|
|
|
|
convert
|
|
|
|
mpris
|
|
|
|
simple-mpv-webui
|
|
|
|
sponsorblock
|
|
|
|
];
|
|
|
|
})
|
|
|
|
newsflash
|
2022-06-03 23:36:40 +02:00
|
|
|
rhythmbox
|
|
|
|
tdesktop
|
|
|
|
thunderbird
|
|
|
|
vlc
|
|
|
|
wayvnc
|
|
|
|
zathura
|
|
|
|
zeal
|
2023-01-23 23:10:20 +01:00
|
|
|
# terminal
|
|
|
|
socat
|
|
|
|
sshuttle
|
|
|
|
libnotify
|
|
|
|
keychain
|
2022-06-03 23:36:40 +02:00
|
|
|
];
|
|
|
|
|
2022-12-25 12:11:29 +01:00
|
|
|
programs.wireshark = {
|
|
|
|
enable = true;
|
2023-01-29 15:36:02 +01:00
|
|
|
package = pkgs.wireshark; # enable the gui
|
2022-12-25 12:11:29 +01:00
|
|
|
};
|
2022-06-03 23:36:40 +02:00
|
|
|
}
|