add plasma-manager, add shortcuts and hotkeys
This commit is contained in:
parent
a83c37a638
commit
01f8435ba7
10 changed files with 211 additions and 73 deletions
23
modules/home/cli-apps/lazygit/default.nix
Normal file
23
modules/home/cli-apps/lazygit/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.${namespace};
|
||||
let
|
||||
cfg = config.${namespace}.cli-apps.lazygit;
|
||||
in
|
||||
{
|
||||
options.${namespace}.cli-apps.lazygit = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to enable lazygit.";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.lazygit = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue