init
This commit is contained in:
commit
aae151cee6
33 changed files with 1351 additions and 0 deletions
21
modules/home-manager/shells/zellij.nix
Executable file
21
modules/home-manager/shells/zellij.nix
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
{ config
|
||||
, lib
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.custom.shells.zellij;
|
||||
in
|
||||
{
|
||||
options.custom.shells.zellij = {
|
||||
enable = lib.mkEnableOption "Enable the Zellij multiplexer.";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue