nix/home/programs/graphical.nix
Tristan 123e7088f5 alpine: many changes
- updates
- snapserver
- graphana dashboards
- loki
- ddclient
- arr suite, jellyseer
- mautrix fixes
2025-01-18 00:18:11 +00:00

53 lines
871 B
Nix

{pkgs, ...}: {
imports = [
./pcmanfm.nix
./mpv.nix
./vscode.nix
];
home.packages = with pkgs; [
# system
selectdefaultapplication
easyeffects
pavucontrol
helvum
# tools
inkscape
libsForQt5.okular
gimp
libreoffice
dbeaver-bin
drawio
# entertainment
libsForQt5.kasts
shortwave
# other
element-desktop-wayland
brave
bitwarden
];
programs.obs-studio = {
enable = true;
plugins = [pkgs.obs-studio-plugins.wlrobs];
};
xdg.mimeApps.defaultApplications = {
"application/pdf" = "sioyek.desktop";
};
programs.sioyek.enable = true;
programs.imv.enable = true;
gtk = {
enable = true;
gtk3.bookmarks = [
"file:///home/tristan/Documents"
"file:///home/tristan/Pictures/Screenshots"
"file:///home/tristan/Downloads"
];
};
}