You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
274 B
15 lines
274 B
2 years ago
|
{ pkgs, ... }:
|
||
|
|
||
2 years ago
|
let
|
||
2 years ago
|
_theme = import ../theme;
|
||
|
theme = _theme.theme; # Theme name
|
||
2 years ago
|
in {
|
||
2 years ago
|
programs.rofi = {
|
||
|
enable = true;
|
||
2 years ago
|
inherit theme;
|
||
2 years ago
|
};
|
||
2 years ago
|
home.file.".config/rofi/${theme}.rasi".source = pkgs.substituteAll ({
|
||
|
src = ./theme.rasi;
|
||
2 years ago
|
} // _theme.colors);
|
||
2 years ago
|
}
|