You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
421 B
20 lines
421 B
{ config, pkgs, ... }:
|
|
{
|
|
programs.plasma = {
|
|
enable = true;
|
|
|
|
panels = [
|
|
{
|
|
location = "top";
|
|
alignment = "right";
|
|
hiding = "autohide";
|
|
}
|
|
];
|
|
|
|
hotkeys.commands."alacritty-full" = {
|
|
name = "Launch Alacritty";
|
|
key = "Meta+Enter";
|
|
command = "alacritty --config-file ${config.users.users.username.home}/.config/alacritty/alacritty-full.toml";
|
|
};
|
|
};
|
|
} |