Files
Olympus/modules/users/nathan/home-manager/features/rofi.nix
2026-04-22 13:27:21 -05:00

19 lines
338 B
Nix

{ ... }: {
flake.homeModules.nathan-rofi = { config, lib, pkgs, ... }: {
config = {
programs.rofi = {
enable = true;
package = pkgs.rofi;
cycle = true;
theme = "/home/nathan/.cache/wal/colors-rofi-dark.rasi";
};
};
};
}