refactor(networking): split networking into modules
This commit is contained in:
parent
4a177d2122
commit
221d9e3e33
8 changed files with 227 additions and 30 deletions
18
system/modules/networking/tools/default.nix
Normal file
18
system/modules/networking/tools/default.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.systemModules.networking;
|
||||
inherit (lib) mkIf mkEnableOption;
|
||||
in
|
||||
|
||||
{
|
||||
options.systemModules.networking.tools = mkEnableOption "Enable networking tools";
|
||||
|
||||
config = mkIf cfg.tools {
|
||||
environment.systemPackages = with pkgs; [
|
||||
traceroute
|
||||
mtr
|
||||
tcpdump
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue