mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-26 22:18:20 -04:00
28 lines
457 B
Nix
28 lines
457 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
rofi
|
|
];
|
|
file = {
|
|
rofi = {
|
|
recursive = true;
|
|
source = ../../../dotfiles/rofi;
|
|
target = "./.config/rofi";
|
|
};
|
|
};
|
|
};
|
|
programs = {
|
|
plasma = {
|
|
hotkeys = {
|
|
commands = {
|
|
"rofi" = {
|
|
name = "rofi";
|
|
key = "Alt+P";
|
|
command = "rofi -show drun";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|