clean firejail
This commit is contained in:
parent
199e90e1f8
commit
f97a86c7bd
@ -11,7 +11,6 @@
|
|||||||
./games
|
./games
|
||||||
./groups
|
./groups
|
||||||
./hardware
|
./hardware
|
||||||
./isolation
|
|
||||||
./networking
|
./networking
|
||||||
./office
|
./office
|
||||||
./shell
|
./shell
|
||||||
|
|||||||
@ -29,7 +29,6 @@ in
|
|||||||
};
|
};
|
||||||
tor.enable = true;
|
tor.enable = true;
|
||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
firejail.enable = true;
|
|
||||||
wireshark.enable = true;
|
wireshark.enable = true;
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
};
|
};
|
||||||
@ -52,6 +51,7 @@ in
|
|||||||
ghidra
|
ghidra
|
||||||
calibre
|
calibre
|
||||||
arduino-ide
|
arduino-ide
|
||||||
|
firejail
|
||||||
neomutt
|
neomutt
|
||||||
pass
|
pass
|
||||||
isync
|
isync
|
||||||
|
|||||||
@ -34,7 +34,6 @@ in
|
|||||||
tor.enable = true;
|
tor.enable = true;
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
firejail.enable = true;
|
|
||||||
wireshark.enable = true;
|
wireshark.enable = true;
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
};
|
};
|
||||||
@ -58,6 +57,7 @@ in
|
|||||||
kicad
|
kicad
|
||||||
calibre
|
calibre
|
||||||
arduino-ide
|
arduino-ide
|
||||||
|
firejail
|
||||||
neomutt
|
neomutt
|
||||||
pass
|
pass
|
||||||
isync
|
isync
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./firejail.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf mkOption types;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.smayzy.firejail.enable = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
description = "firejail";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf config.smayzy.firejail.enable {
|
|
||||||
environment.systemPackages = with pkgs; [ firejail ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user