Files
nixos-conf/modules/desktop/flatpak.nix
T
2026-08-03 03:08:05 +02:00

25 lines
523 B
Nix

{ nix-flatpak, ... }:
{
imports = [
nix-flatpak.nixosModules.nix-flatpak
];
services.flatpak.remotes = [
{
name = "cloudredirect";
location = "https://raw.githubusercontent.com/Selectively11/CloudRedirect/master/flatpak/cloudredirect.flatpakrepo";
}
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
];
services.flatpak.packages = [
{
appId = "org.cloudredirect.CloudRedirect";
origin = "cloudredirect";
}
];
}