clean firejail
All checks were successful
nixos config pipeline / show-flake (push) Successful in 23s
nixos config pipeline / deploy (push) Successful in 37s

This commit is contained in:
smayzy 2026-02-28 15:58:54 +01:00
parent 199e90e1f8
commit f97a86c7bd
5 changed files with 2 additions and 29 deletions

View File

@ -11,7 +11,6 @@
./games
./groups
./hardware
./isolation
./networking
./office
./shell

View File

@ -29,7 +29,6 @@ in
};
tor.enable = true;
chromium.enable = true;
firejail.enable = true;
wireshark.enable = true;
alacritty.enable = true;
};
@ -52,6 +51,7 @@ in
ghidra
calibre
arduino-ide
firejail
neomutt
pass
isync

View File

@ -34,7 +34,6 @@ in
tor.enable = true;
alacritty.enable = true;
chromium.enable = true;
firejail.enable = true;
wireshark.enable = true;
steam.enable = true;
};
@ -58,6 +57,7 @@ in
kicad
calibre
arduino-ide
firejail
neomutt
pass
isync

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./firejail.nix
];
}

View File

@ -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 ];
};
}