Jafner.net/nix/nixos/flatpak.nix
Joey Hafner 5fd1f1531f
Some checks failed
SSH and echo to file / ssh (push) Failing after 4s
Update from joey@joey-laptop: Add Flatpak, Zen, zsh customization, kdeconnect
2024-09-14 12:43:44 -07:00

8 lines
197 B
Nix

{ pkgs, ... }:
{
services.flatpak.enable = true;
services.flatpak.packages = [ { appId = "io.github.zen_browser.zen"; origin = "flathub"; } ];
services.flatpak.update.onActivation = true;
}