From eaa31be8214bf712997b2e5be909921e50a96161 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Thu, 4 Jan 2024 00:18:26 +0800 Subject: [PATCH] fix: ignore home-manager's default i3 config --- home/linux/desktop/i3/values/i3.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/linux/desktop/i3/values/i3.nix b/home/linux/desktop/i3/values/i3.nix index df917266..d8a6f6be 100644 --- a/home/linux/desktop/i3/values/i3.nix +++ b/home/linux/desktop/i3/values/i3.nix @@ -1,4 +1,4 @@ -{polybar-themes, ...}: { +{lib, polybar-themes, ...}: { # NOTE: # We have to enable hyprland/i3's systemd user service in home-manager, # so that gammastep/wallpaper-switcher's user service can be start correctly! @@ -7,6 +7,7 @@ enable = true; windowManager.i3 = { enable = true; + config = lib.mkForce null; # ignores all home-manager's default i3 config extraConfig = builtins.readFile ../conf/i3-config; }; # Path, relative to HOME, where Home Manager should write the X session script.