config/packages/nixpak/fragments/default.nix

21 lines
405 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;
2022-08-31 23:48:05 +03:00
bind.ro = [
"/etc/hosts"
];
2022-07-07 21:42:36 +03:00
bind.rw = [
"$HOME/.config/fragments"
];
};
};
}