blob: 920607eaa16ea5fd9f46d47ceccfc75fc366d232 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ pkgs, lib, ... }: {
programs.firejail = {
enable = true;
wrappedBinaries.spotify = {
executable = lib.getExe pkgs.spotify;
profile = "${pkgs.firejail}/etc/firejail/spotify.profile";
};
};
}
|