nix-config/home/features/desktop/common/flatpak.nix

16 lines
313 B
Nix
Raw Normal View History

2024-01-26 18:04:50 +01:00
{
inputs,
pkgs,
vars,
...
}: {
imports = [inputs.flatpaks.homeManagerModules.default];
services.flatpak = {
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
packages = [
"flathub:app/us.zoom.Zoom//stable"
"flathub:app/com.discordapp.Discord//stable"
];
};
}