diff --git a/profiles/desktop-apps/default.nix b/profiles/desktop-apps/default.nix index 19f5638..623b223 100644 --- a/profiles/desktop-apps/default.nix +++ b/profiles/desktop-apps/default.nix @@ -14,7 +14,6 @@ in config = lib.mkIf cfg.enable { environment.systemPackages = with pkgs; [ - evince firefox (gimp-with-plugins.override { plugins = with gimpPlugins; [ @@ -33,11 +32,11 @@ in ]; }) newsflash + papers rhythmbox telegram-desktop thunderbird vlc - wayvnc zathura zeal # terminal @@ -47,9 +46,13 @@ in keychain ]; - programs.wireshark = { - enable = true; - package = pkgs.wireshark; # enable the gui + programs = { + wayvnc.enable = true; + wireshark = { + enable = true; + package = pkgs.wireshark; # enable the gui + }; + }; }; }