nix/home/programs/graphical.nix
2024-11-02 09:46:12 +00:00

55 lines
929 B
Nix

{pkgs, ...}: {
imports = [
./pcmanfm.nix
./mpv.nix
./vscode.nix
];
home.packages = with pkgs; [
# system
selectdefaultapplication
easyeffects
pwvucontrol
helvum
# tools
inkscape
libsForQt5.okular
gimp
libreoffice
dbeaver-bin
# entertainment
libsForQt5.kasts
shortwave
# other
element-desktop-wayland
brave
bitwarden
];
programs.obs-studio = {
enable = true;
plugins = [
pkgs.obs-studio-plugins.wlrobs
pkgs.obs-studio-plugins.obs-pipewire-audio-capture
];
};
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"
];
};
}