mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
14 lines
229 B
Nix
14 lines
229 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (import <niveum/lib>) colours;
|
|
in {
|
|
home-manager.users.me.programs.rofi = {
|
|
enable = true;
|
|
font = "Monospace 10";
|
|
theme = "${pkgs.rofi}/share/rofi/themes/Arc.rasi";
|
|
};
|
|
}
|