d7e2c0a924
Will this ever change? No like likely, but I do think that this is the correct way to do this.
26 lines
567 B
Nix
26 lines
567 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
let
|
|
this = config.my.application.i3.rofi;
|
|
i3 = config.my.application.i3;
|
|
|
|
in
|
|
with lib; {
|
|
options = {
|
|
my.application.i3.rofi.enable = mkOption {
|
|
default = i3.enable;
|
|
type = with types; bool;
|
|
};
|
|
};
|
|
|
|
config = mkIf this.enable {
|
|
home-manager.users."${user.name}" = {
|
|
home.packages = with pkgs; [ rofi-systemd rofi-power-menu ];
|
|
programs.rofi = {
|
|
enable = true;
|
|
package =
|
|
pkgs.rofi.override { plugins = with pkgs; [ rofi-emoji rofi-calc ]; };
|
|
};
|
|
};
|
|
};
|
|
}
|