wtf work
This commit is contained in:
parent
c3644453ca
commit
c4aa04ff04
2 changed files with 48 additions and 7 deletions
|
@ -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" ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue