24 lines
No EOL
523 B
Nix
24 lines
No EOL
523 B
Nix
{ mkNixPak, amberol }:
|
|
|
|
mkNixPak {
|
|
config = { sloth, ... }: {
|
|
imports = [
|
|
../modules/gui-base.nix
|
|
../modules/mpris2-player.nix
|
|
];
|
|
flatpak.appId = "io.bassi.Amberol";
|
|
bubblewrap = {
|
|
bind.rw = [
|
|
[
|
|
(sloth.mkdir (sloth.concat' sloth.appCacheDir "/amberol"))
|
|
(sloth.concat' sloth.xdgCacheHome "/amberol")
|
|
]
|
|
];
|
|
bind.ro = [
|
|
(sloth.concat' sloth.homeDir "/Music")
|
|
"/srv/data/music"
|
|
];
|
|
};
|
|
app.package = amberol;
|
|
};
|
|
} |