nixos configurations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
548 B

  1. {pkgs, settings, ...}:
  2. {
  3. # Setup flatpaks.
  4. services.flatpak.enableModule = true;
  5. services.flatpak.remotes = {
  6. "flathub" = "https://dl.flathub.org/repo/flathub.flatpakrepo";
  7. };
  8. services.flatpak.packages = [
  9. "flathub:app/org.libreoffice.LibreOffice/x86_64/stable"
  10. "flathub:app/org.onlyoffice.desktopeditors/x86_64/stable"
  11. "flathub:app/md.obsidian.Obsidian/x86_64/stable"
  12. "flathub:app/org.gimp.GIMP/x86_64/stable"
  13. "flathub:app/org.kde.krita/x86_64/stable"
  14. "flathub:app/org.inkscape.Inkscape/x86_64/stable"
  15. ];
  16. }