2025-03-14 22:11:59 -03:00
|
|
|
{
|
|
|
|
|
self,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
2025-02-11 11:30:11 -03:00
|
|
|
services.flatpak.packages = [
|
2025-04-20 11:02:38 -03:00
|
|
|
# Management
|
2025-02-11 11:30:11 -03:00
|
|
|
"com.bitwarden.desktop"
|
|
|
|
|
"com.rustdesk.RustDesk"
|
2025-04-20 11:02:38 -03:00
|
|
|
|
|
|
|
|
# Social
|
|
|
|
|
# "dev.vencord.Vesktop" Currently borked
|
|
|
|
|
|
2025-04-20 13:35:21 -03:00
|
|
|
# Services
|
|
|
|
|
"app.moosync.moosync"
|
|
|
|
|
|
2025-04-20 11:02:38 -03:00
|
|
|
# Games
|
|
|
|
|
"org.prismlauncher.PrismLauncher"
|
2025-05-26 10:30:21 -03:00
|
|
|
# "net.pcsx2.PCSX2" Currently borked, mising qt plugin/platform
|
2025-08-07 19:18:09 -03:00
|
|
|
"org.vinegarhq.Sober"
|
2025-04-20 11:02:38 -03:00
|
|
|
|
|
|
|
|
# Office
|
|
|
|
|
"org.libreoffice.LibreOffice"
|
|
|
|
|
|
|
|
|
|
# Media creation
|
2025-05-26 10:30:34 -03:00
|
|
|
"fr.natron.Natron"
|
2025-04-20 11:02:38 -03:00
|
|
|
"org.beeref.BeeRef"
|
|
|
|
|
"com.github.vikdevelop.photopea_app"
|
|
|
|
|
"org.darktable.Darktable"
|
|
|
|
|
"org.inkscape.Inkscape"
|
|
|
|
|
# "org.kde.krita" Currently borked, mising qt plugin/platform
|
|
|
|
|
"com.obsproject.Studio"
|
|
|
|
|
"org.kde.kdenlive"
|
2025-05-26 10:29:41 -03:00
|
|
|
# "fm.reaper.Reaper"
|
2025-04-20 11:02:38 -03:00
|
|
|
|
|
|
|
|
# 3D modeling
|
2025-04-20 11:03:22 -03:00
|
|
|
"net.blockbench.Blockbench"
|
2025-04-20 11:02:38 -03:00
|
|
|
"org.blender.Blender"
|
2025-06-12 19:18:22 -03:00
|
|
|
|
|
|
|
|
# For sites that are incompatible with qutebrowser
|
|
|
|
|
"io.gitlab.librewolf-community"
|
2025-02-11 11:30:11 -03:00
|
|
|
];
|
2025-02-11 12:19:33 -03:00
|
|
|
services.flatpak.overrides = {
|
2025-05-26 10:30:01 -03:00
|
|
|
"net.blockbench.Blockbench" = {Context.sockets = ["x11"];};
|
2025-02-11 12:19:33 -03:00
|
|
|
"com.bitwarden.desktop" = {Context.sockets = ["x11"];};
|
2025-05-26 10:30:34 -03:00
|
|
|
"fr.natron.Natron" = {Context.sockets = ["x11"];};
|
2025-02-11 12:19:33 -03:00
|
|
|
"com.github.vikdevelop.photopea_app" = {Context.sockets = ["x11"];};
|
2025-03-02 17:20:36 -03:00
|
|
|
"org.prismlauncher.PrismLauncher" = {Context.sockets = ["x11"];};
|
2025-08-07 19:18:09 -03:00
|
|
|
"org.vinegarhq.Sober" = {Context.device = "input";};
|
2025-02-23 16:40:01 -03:00
|
|
|
# "dev.vencord.Vesktop" = {Context.sockets = ["x11"];};
|
2025-02-11 12:19:33 -03:00
|
|
|
};
|
2025-02-11 13:24:19 -03:00
|
|
|
|
2025-02-18 19:12:09 -03:00
|
|
|
services.kdeconnect.enable = true;
|
|
|
|
|
services.kdeconnect.indicator = true;
|
|
|
|
|
|
2025-02-11 13:24:19 -03:00
|
|
|
qt.enable = true;
|
2025-03-14 22:11:59 -03:00
|
|
|
home.packages =
|
|
|
|
|
(with pkgs; [
|
2025-04-20 11:02:38 -03:00
|
|
|
# Management
|
2025-03-14 22:11:59 -03:00
|
|
|
megasync
|
|
|
|
|
|
2025-05-26 10:30:21 -03:00
|
|
|
# Games
|
2025-05-26 10:31:02 -03:00
|
|
|
lutris
|
|
|
|
|
winePackages.waylandFull
|
2025-05-26 10:30:21 -03:00
|
|
|
pcsx2
|
2025-06-12 19:18:22 -03:00
|
|
|
mono # For city skylines mods
|
2025-05-26 10:30:21 -03:00
|
|
|
|
2025-04-20 11:02:38 -03:00
|
|
|
# Social
|
2025-03-14 22:11:59 -03:00
|
|
|
vesktop
|
|
|
|
|
|
2025-04-20 11:02:38 -03:00
|
|
|
# Media creation
|
|
|
|
|
krita
|
2025-05-26 10:29:41 -03:00
|
|
|
reaper
|
2025-03-14 22:11:59 -03:00
|
|
|
ffmpeg
|
2025-03-14 22:13:03 -03:00
|
|
|
exiftool
|
2025-05-26 10:27:26 -03:00
|
|
|
|
|
|
|
|
# Keyboard
|
|
|
|
|
vial
|
2025-08-07 19:18:09 -03:00
|
|
|
|
|
|
|
|
davinci-resolve
|
2025-03-14 22:12:37 -03:00
|
|
|
])
|
|
|
|
|
# Utils
|
|
|
|
|
++ (with self.packages.${pkgs.system}; [
|
|
|
|
|
davincify
|
2025-03-14 22:13:03 -03:00
|
|
|
untrack
|
2025-03-14 22:11:59 -03:00
|
|
|
]);
|
2025-06-06 10:41:24 -03:00
|
|
|
|
2025-08-07 19:18:10 -03:00
|
|
|
xdg.desktopEntries."davinci-resolve-zsh" = rec {
|
|
|
|
|
name = "Davinci Resolve (Zsh)";
|
|
|
|
|
genericName = name;
|
|
|
|
|
mimeType = ["application/x-resolveproj"];
|
|
|
|
|
# INFO: For some reason this works and removes the "Unsupported GPU" error
|
|
|
|
|
exec = "${lib.getExe config.programs.zsh.package} -c ${lib.getExe pkgs.davinci-resolve}";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# TODO: Remove this
|
2025-06-06 10:41:24 -03:00
|
|
|
programs.distrobox.enable = true;
|
|
|
|
|
programs.distrobox.containers = {
|
|
|
|
|
"davincibox" = {
|
|
|
|
|
image = "ghcr.io/zelikos/davincibox-opencl:latest";
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-02-06 10:21:50 -03:00
|
|
|
}
|