rofi: create dmenu alias
Alan Pearce alan@alanpearce.eu
Mon, 21 Oct 2019 14:01:31 +0200
1 files changed, 11 insertions(+), 1 deletions(-)
jump to
M user/settings/rofi.nix → user/settings/rofi.nix
@@ -1,4 +1,4 @@-{ config, pkgs, ... }: +{ config, lib, pkgs, ... }: { xdg.configFile."networkmanager-dmenu/config.ini".text = '' @@ -9,6 +9,16 @@ [editor] terminal = xst gui_if_available = false ''; + + nixpkgs.overlays = [ + (self: super: { + rofi= super.rofi.overrideAttrs (oldAttrs: rec { + postInstall = '' + ln $out/bin/rofi $out/bin/dmenu + ''; + }); + }) + ]; programs.rofi = { enable = true; extraConfig = ''