mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 08:42:55 +00:00
417623965e
also change theme to colorscheme
19 lines
340 B
Nix
19 lines
340 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
config = lib.mkIf config.services.xserver.enable {
|
|
|
|
home-manager.users.${config.user}.programs.rofi = {
|
|
enable = true;
|
|
cycle = true;
|
|
location = "center";
|
|
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
|
|
};
|
|
gui.launcherCommand = "${pkgs.rofi}/bin/rofi -show run";
|
|
|
|
};
|
|
|
|
}
|
|
|