nixos/legacy/modules/desktop-default.nix

42 lines
664 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
evince
2022-12-25 12:11:29 +01:00
firefox
ghostwriter
(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
rhythmbox
tdesktop
thunderbird
vlc
wayvnc
zathura
zeal
# terminal
socat
sshuttle
libnotify
keychain
];
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
};
}