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