Reformatted with nixfmt

This commit is contained in:
alejandro-angulo 2025-03-31 22:34:25 -07:00
parent f51256c3ae
commit 3f16537322
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
80 changed files with 1454 additions and 992 deletions

View file

@ -4,11 +4,13 @@
pkgs,
namespace,
...
}: let
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.${namespace}.programs.rofi;
in {
in
{
options.${namespace}.programs.rofi = {
enable = mkEnableOption "rofi";
};
@ -19,7 +21,7 @@ in {
# TODO: How to ensure this font is installed?
font = "Hack Nerd Font 10";
catppuccin.enable = true;
plugins = [pkgs.rofi-emoji];
plugins = [ pkgs.rofi-emoji ];
extraConfig = {
show-icons = true;
modi = "window,run,ssh,emoji";