Files
NubNix/home-manager/20_rofi/01_config.nix
2025-11-13 14:15:48 +00:00

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"
'';
}