about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-10 08:18:57 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-10 08:18:57 -0800
commit4a442057501743ed8f679c35a9085cdd8f9fcd07 (patch)
tree758f1c053da5b90edcd661fef87e98378c99163d /users
parentpolybar: rename configuration files (diff)
downloadworld-4a442057501743ed8f679c35a9085cdd8f9fcd07.tar.gz
home-manager: fix the script for polybar
The path was incorrectly set up.
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/i3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/i3.nix b/users/fcuny/i3.nix
index 3d46edf..8366111 100644
--- a/users/fcuny/i3.nix
+++ b/users/fcuny/i3.nix
@@ -40,6 +40,6 @@ in
   services.polybar = {
     enable = true;
     package = pkgs.polybarFull;
-    script = "polybar --config=${config.xdg.configFile."polybar/config".source}/$(hostname -s).conf &";
+    script = "polybar --config=${config.xdg.configFile."polybar".source}/$(hostname -s).ini -r alone &";
   };
 }