nixos-config/home-manager/modules/rofi/default.nix

17 lines
273 B
Nix
Raw Normal View History

2021-11-12 17:10:17 +01:00
{ lib, pkgs, config, ... }:
with lib;
let
cfg = config.eboskma.programs.rofi;
in
{
options.eboskma.programs.rofi.enable = mkEnableOption "Enable rofi";
config = mkIf cfg.enable {
programs.rofi = {
enable = true;
theme = ./launch.rasi;
};
};
}