24 lines
306 B
Nix
24 lines
306 B
Nix
{
|
|
description = "Rofi Config";
|
|
|
|
inputs = {
|
|
|
|
};
|
|
|
|
outputs = { self, ... }: {
|
|
|
|
hmModule = { config, lib, pkgs, ... }: {
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
|
|
cycle = true;
|
|
|
|
theme = "/home/nathan/.cache/wal/colors-rofi-dark.rasi";
|
|
};
|
|
};
|
|
|
|
};
|
|
}
|