Files
Olympus/programs/rofi/flake.nix
2024-10-02 00:54:05 -05:00

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";
};
};
};
}