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.
19 lines
400 B
19 lines
400 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
|
home.packages = with pkgs; [
|
||
|
(pkgs.callPackage ./power.nix { })
|
||
2 years ago
|
wmctrl # TODO: add as dependency of rofi-power
|
||
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
|
}
|