config/packages/nixpak/fragments/default.nix

18 lines
No EOL
357 B
Nix

{ mkNixPak, fragments }:
mkNixPak {
config = {
imports = [ ../modules/gui-base.nix ];
flatpak.appId = "de.haeckerfelix.Fragments";
app.package = fragments;
dbus.policies = {
"org.freedesktop.secrets" = "talk";
};
bubblewrap = {
network = true;
bind.rw = [
"$HOME/.config/fragments"
];
};
};
}