summary refs log tree commit diff stats
path: root/user/settings/rofi.nix
diff options
context:
space:
mode:
authorAlan Pearce2022-06-18 03:44:18 +0200
committerAlan Pearce2022-06-18 03:44:18 +0200
commitc25fc18a2b6496a4ec8a3ba495edaf557bc365a9 (patch)
treeeb0e41fe278aa4c27bb2ae42668a627e3c3b9b10 /user/settings/rofi.nix
parent683cbf72529772ddd416aa0853abc720fbf43dfb (diff)
downloadnixfiles-c25fc18a2b6496a4ec8a3ba495edaf557bc365a9.tar.lz
nixfiles-c25fc18a2b6496a4ec8a3ba495edaf557bc365a9.tar.zst
nixfiles-c25fc18a2b6496a4ec8a3ba495edaf557bc365a9.zip
rofi: update settings for home-manager 22.05
Diffstat (limited to 'user/settings/rofi.nix')
-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";
+    };
   };
 }