You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
339 B
Nix
24 lines
339 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.ffnix;
|
|
in
|
|
{
|
|
options.ffnix = {
|
|
enable = mkEnableOption "ffnix";
|
|
batman-legacy = mkEnableOption "batman-adv-legacy";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.vnstat.enable = true;
|
|
|
|
programs.mtr.enable = true;
|
|
};
|
|
|
|
imports = [
|
|
./modules/batman.nix
|
|
];
|
|
}
|