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:
parent
a9042b53c2
commit
2d057cd9d4
1 changed files with 1 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue