1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

zellij: use mkPackageOption

This commit is contained in:
Austin Horstman 2025-03-24 11:32:46 -05:00
parent a9042b53c2
commit 2d057cd9d4

View file

@ -17,14 +17,7 @@ in {
options.programs.zellij = {
enable = lib.mkEnableOption "Zellij";
package = mkOption {
type = types.package;
default = pkgs.zellij;
defaultText = lib.literalExpression "pkgs.zellij";
description = ''
The Zellij package to install.
'';
};
package = lib.mkPackageOption pkgs "zellij" { };
settings = lib.mkOption {
type = yamlFormat.type;