This commit is contained in:
Lucy Hochkamp 2024-06-18 18:08:57 +02:00
parent e0a8e0ceb2
commit 4aca99be34
No known key found for this signature in database
7 changed files with 333 additions and 62 deletions

View 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;
};
};
}