summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-08-15 19:29:02 +0200
committerMartin Fischer <martin@push-f.com>2025-08-15 20:46:40 +0200
commitf18d98a1c49d4f3c69e345255b42bd66fd3d7aae (patch)
tree85e229348dd9f228d3177f3be8ea6ac7dc366f42
parent476026efc9563fffbe26687f419d07f15135a161 (diff)
fix: remove unused networkmanager plugins
The network manager plugins pulled in GTK on tente. This gets rid of 186 packages on tente and 50 on ev.
-rw-r--r--nixos/profiles/common/basics.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/profiles/common/basics.nix b/nixos/profiles/common/basics.nix
index 4ef0c14..3f1859c 100644
--- a/nixos/profiles/common/basics.nix
+++ b/nixos/profiles/common/basics.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }:
+{ lib, config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
@@ -33,4 +33,7 @@
ZDOTDIR = "${config}/zsh";
};
+
+ # By default installs plugins that pull in GTK.
+ networking.networkmanager.plugins = lib.mkForce [];
}