20 lines
714 B
Nix
20 lines
714 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.file.".config/rofi/config.rasi".text = ''
|
|
/* ── Rofi Config ──────────────────────────────
|
|
Location: ~/.config/rofi/config.rasi
|
|
Description: Basic configuration + theme import
|
|
─────────────────────────────────────────── */
|
|
|
|
configuration {
|
|
modi: "drun,run"; // Available modes
|
|
show-icons: true; // Show app icons
|
|
font: "JetBrainsMono Nerd Font 12"; // Global font
|
|
}
|
|
|
|
/* Import active theme */
|
|
@theme "~/.config/rofi/theme.rasi"
|
|
'';
|
|
} |