1
Fork 0
nixos-system-config/modules/packages/rofi.nix

12 lines
163 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home-manager.users.hu = {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = "sidebar";
};
};
}