25 lines
523 B
Nix
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";
|
|
}
|
|
];
|
|
}
|