mrowwww
This commit is contained in:
parent
e0a8e0ceb2
commit
4aca99be34
7 changed files with 333 additions and 62 deletions
12
hm-modules/zellij/default.nix
Normal file
12
hm-modules/zellij/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, config, lib, inputs, ... }:
|
||||
let
|
||||
cfg = config.ragon.zellij;
|
||||
in
|
||||
{
|
||||
options.ragon.zellij.enable = lib.mkOption { default = false; };
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue