15 lines
243 B
Nix
15 lines
243 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# this would need you to config rofi using home-manager
|
|
# programs.rofi = { enable = true; };
|
|
|
|
home.packages = with pkgs; [rofi];
|
|
|
|
home.file = {
|
|
".config/rofi/config.rasi".source = ./config.rasi;
|
|
};
|
|
}
|