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 {
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
};
};
};
}