config/packages/nixpak/fragments/default.nix

18 lines
357 B
Nix
Raw Normal View History

2022-07-07 21:42:36 +03:00
{ 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"
];
};
};
}