summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--user/settings/rofi.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/user/settings/rofi.nix b/user/settings/rofi.nix
index 75514835..4c932224 100644
--- a/user/settings/rofi.nix
+++ b/user/settings/rofi.nix
@@ -22,17 +22,14 @@
   programs.rofi = {
     enable = true;
     theme = "Arc";
-    extraConfig = ''
-      rofi.matching:            glob
-      rofi.separator-style:     none
-
-      rofi.modi:                drun,run
-
-      rofi.line-padding:        2
-
-      rofi.display-run:         cmd
-      rofi.display-drun:        run
-      rofi.display-window:      win
-    '';
+    extraConfig = {
+      matching = "glob";
+      separator-style = "none";
+      modi = "drun,run";
+      line-padding = "2";
+      display-run = "cmd";
+      display-drun = "run";
+      display-window = "win";
+    };
   };
 }