about summary refs log tree commit diff
path: root/modules/hardware/networking
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hardware/networking')
-rw-r--r--modules/hardware/networking/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/hardware/networking/default.nix b/modules/hardware/networking/default.nix
deleted file mode 100644
index fac6c30..0000000
--- a/modules/hardware/networking/default.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, lib, ... }:
-let cfg = config.my.hardware.networking;
-in
-{
-  options.my.hardware.networking = with lib; {
-    wireless = { enable = mkEnableOption "wireless configuration"; };
-  };
-
-  config = lib.mkMerge [
-    (lib.mkIf cfg.wireless.enable { networking.wireless.iwd.enable = true; })
-  ];
-}