mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
26 lines
512 B
Nix
26 lines
512 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
|
|
cfg = config.sconfig.security-tools;
|
|
|
|
in
|
|
{
|
|
options.sconfig.security-tools = lib.mkEnableOption "Enable security tools";
|
|
|
|
config = lib.mkIf cfg {
|
|
environment.systemPackages = [ pkgs.security-toolbox ];
|
|
|
|
programs = {
|
|
wireshark.enable = true;
|
|
wireshark.package = pkgs.wireshark;
|
|
};
|
|
|
|
users.users.zim = {
|
|
group = "users";
|
|
isSystemUser = true;
|
|
useDefaultShell = true;
|
|
home = "/home/zim";
|
|
createHome = true;
|
|
};
|
|
};
|
|
}
|