add core configuration
This commit is contained in:
parent
74c78e1c68
commit
f40517cff1
94 changed files with 2816 additions and 959 deletions
20
home-manager/modules/rofi/default.nix
Normal file
20
home-manager/modules/rofi/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.lily.rofi;
|
||||
in {
|
||||
options.lily.rofi = {
|
||||
enable = lib.mkEnableOption "activate rofi";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.rofi = {
|
||||
package = pkgs.rofi-wayland;
|
||||
enable = true;
|
||||
plugins = [pkgs.rofi-calc];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue