Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
16 lines
232 B
Nix
16 lines
232 B
Nix
{
|
|
flake.modules.homeManager.rofi = { pkgs, ... }: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
modes = [
|
|
"combi"
|
|
"drun"
|
|
"calc"
|
|
];
|
|
plugins = [
|
|
pkgs.rofi-calc
|
|
];
|
|
};
|
|
};
|
|
}
|