12 lines
163 B
Nix
12 lines
163 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home-manager.users.hu = {
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
package = pkgs.rofi-wayland;
|
||
|
theme = "sidebar";
|
||
|
};
|
||
|
};
|
||
|
}
|