the west has fallen

This commit is contained in:
Sakooooo 2024-09-02 13:25:44 +04:00
parent f1cfce48d3
commit c94112ba50
Signed by: sako
GPG key ID: 3FD715D87D7725E0
4 changed files with 24 additions and 0 deletions

View file

@ -73,6 +73,9 @@
mpv.enable = true; mpv.enable = true;
jellyfin.enable = true; jellyfin.enable = true;
}; };
security = {
wireshark.enable = true;
};
}; };
hardware = { hardware = {
nvidia = { nvidia = {

View file

@ -28,5 +28,7 @@
# vpn # vpn
./wireguard ./wireguard
./printing ./printing
# securitity
./security
]; ];
} }

View file

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

View file

@ -0,0 +1,13 @@
{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.security.wireguard;
in
{
options.modules.desktop.security.wireguard = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
programs.wireshark.enable = true;
};
}