Add nix-flatpak module and configuration

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-04-28 22:38:33 +03:00
parent d3773e4e4f
commit f95e75a3cb
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
2 changed files with 36 additions and 0 deletions

31
home-manager/flatpak.nix Normal file
View file

@ -0,0 +1,31 @@
{
config,
packages,
...
}: {
services.flatpak.enable = true;
services.flatpak.update.auto.enable = false;
services.flatpak.uninstallUnmanaged = true;
services.flatpak.packages = [
"com.obsproject.Studio"
"com.github.tchx84.Flatseal"
"com.github.wwmm.easyeffects"
"com.prusa3d.PrusaSlicer"
"com.vscodium.codium"
"io.freetubeapp.FreeTube"
"io.mpv.Mpv"
"net.cozic.joplin_desktop"
"org.ferdium.Ferdium"
"runtime/org.kde.KStyle.Adwaita/x86_64/6.6"
"org.kde.ark"
"org.kde.kamoso"
"org.kde.krita"
"org.kde.kwrite"
"org.kde.okular"
"org.keepassxc.KeePassXC"
"org.libreoffice.LibreOffice"
"org.mozilla.Thunderbird"
"com.github.Eloston.UngoogledChromium"
"io.podman_desktop.PodmanDesktop"
];
}