aboutsummaryrefslogtreecommitdiff
path: root/modules/services/system/networking/nm.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 17:03:20 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 17:14:14 +0000
commit82ec91b4d2c253c6ccb783f960a2788f230d6ad1 (patch)
tree94dad925340787e5a045d9bb0d094f71dedce036 /modules/services/system/networking/nm.nix
parentcfe198ee85f3c5ee41f4221f49b73dd492b42fdc (diff)
start avoiding lib.enum; start using hjem generators
Diffstat (limited to 'modules/services/system/networking/nm.nix')
-rw-r--r--modules/services/system/networking/nm.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/services/system/networking/nm.nix b/modules/services/system/networking/nm.nix
deleted file mode 100644
index 674664e..0000000
--- a/modules/services/system/networking/nm.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- lib,
- config,
- ...
-}: let
- cfg = config.collinux.services.networking;
-in
- lib.mkIf (cfg.enable && cfg.wifiDaemon == "networkmanager") {
- networking = {
- nameservers = ["1.1.1.1" "1.0.0.1"];
- enableIPv6 = false;
-
- networkmanager.enable = true;
- };
- }