blob: 920607eaa16ea5fd9f46d47ceccfc75fc366d232 (
plain) (
tree)
|
|
{ pkgs, lib, ... }: {
programs.firejail = {
enable = true;
wrappedBinaries.spotify = {
executable = lib.getExe pkgs.spotify;
profile = "${pkgs.firejail}/etc/firejail/spotify.profile";
};
};
}
|