From 22a8960b3422cf20a7fca3fba729eaeb79e0cfbf Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 16 Jan 2023 07:44:55 +0100 Subject: [PATCH] Revert "Add network manager applet via option" This reverts commit c299c3d0ef11c39a3c943eb60f68f228d53b3c5f. Cause this didn't have access to the systems VPN setups. Need to find a way to manage them on user level. --- home/services.nix | 2 -- home/windowManager/i3.nix | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/home/services.nix b/home/services.nix index 83d9f71..d2de690 100644 --- a/home/services.nix +++ b/home/services.nix @@ -9,8 +9,6 @@ gpg-agent = import ./services/gpg-agent.nix { }; - network-manager-applet.enable = true; - languagetool.enable = true; mailhog.enable = true; diff --git a/home/windowManager/i3.nix b/home/windowManager/i3.nix index 5ebda08..4664887 100644 --- a/home/windowManager/i3.nix +++ b/home/windowManager/i3.nix @@ -177,6 +177,14 @@ in { ]; }; + startup = [ + # Start programs / applets + { + command = "nm-applet"; + notification = false; + } + ]; + keybindings = { # kill focused window "${modifier}+Shift+q" = "kill";