mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
d3e46e5413
Signed-off-by: Magic_RB <magic_rb@redalder.org>
17 lines
426 B
Nix
17 lines
426 B
Nix
{ pkgs, config, lib, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.magic_rb.networking;
|
|
in
|
|
{
|
|
options.magic_rb.networking = {
|
|
networkManager = mkEnableOption "Whether to enable Network Manager, usefull on laptops.";
|
|
bluetooth = mkEnableOption "Whether to enable bluetooth.";
|
|
};
|
|
|
|
config = {
|
|
networking.networkmanager.enable = mkIf cfg.networkManager true;
|
|
hardware.bluetooth.enable = mkIf cfg.bluetooth true;
|
|
};
|
|
}
|