Compare commits

..

2 commits

Author SHA1 Message Date
Felix Buehler
2136fd8c4a profile/desktop-apps: replace evince with papers
Some checks failed
/ Build Nix targets (push) Has been cancelled
2025-12-04 20:32:04 +01:00
Felix Buehler
117928583d profile/desktop-apps: use programs.wayvnc 2025-12-04 20:24:24 +01:00

View file

@ -14,7 +14,6 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
evince
firefox firefox
(gimp-with-plugins.override { (gimp-with-plugins.override {
plugins = with gimpPlugins; [ plugins = with gimpPlugins; [
@ -33,11 +32,11 @@ in
]; ];
}) })
newsflash newsflash
papers
rhythmbox rhythmbox
telegram-desktop telegram-desktop
thunderbird thunderbird
vlc vlc
wayvnc
zathura zathura
zeal zeal
# terminal # terminal
@ -47,9 +46,13 @@ in
keychain keychain
]; ];
programs.wireshark = { programs = {
enable = true; wayvnc.enable = true;
package = pkgs.wireshark; # enable the gui wireshark = {
enable = true;
package = pkgs.wireshark; # enable the gui
};
}; };
}; };
} }