This commit is contained in:
RingOfStorms (Joshua Bell) 2024-05-12 21:43:38 -05:00
parent c3644453ca
commit c4aa04ff04
2 changed files with 48 additions and 7 deletions

View file

@ -1,12 +1,22 @@
{ settings, pkgs, ... }:
{
programs.rofi = {
enable = true;
plugins = with pkgs; [ rofi-calc ];
extraConfig = {
modi = "drun,run,ssh,window,calc";
terminal = "alacritty";
home.packages = [ pkgs.ulauncher];
systemd.user.services.ulauncher = {
Unit = {
Description = "ulauncher application launcher service";
Documentation = "https://ulauncher.io";
PartOf = [ "graphical-session.target" ];
};
theme = "glue_pro_blue";
Service = {
Type = "simple";
ExecStart = "${pkgs.ulauncher}/bin/ulauncher --hide-window";
Restart = "on-failure";
};
Install.WantedBy = [ "graphical-session.target" ];
};
}