flakes/modules/user/rofi.nix

8 lines
160 B
Nix
Raw Normal View History

2021-11-18 22:56:27 +07:00
{ config, inputs, ... }: {
programs.rofi = {
enable = true;
2021-11-18 22:56:27 +07:00
theme = "theme";
};
2021-11-18 22:56:27 +07:00
xdg.configFile."rofi/theme.rasi".source = ../../res/theme.rasi;
}