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

Update modules/programs/granted.nix

Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Farid Zakaria 2025-03-29 07:52:42 -07:00 committed by Austin Horstman
parent 8ad37dcf64
commit 33fe35c1aa
No known key found for this signature in database

View file

@ -12,12 +12,7 @@ in {
options.programs.granted = {
enable = mkEnableOption "granted";
package = mkOption {
type = types.package;
default = pkgs.granted;
defaultText = literalExpression "pkgs.granted";
description = "The granted package to install.";
};
package = lib.mkPackageOption pkgs "granted" { };
enableZshIntegration =
lib.hm.shell.mkZshIntegrationOption { inherit config; };