mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
37 lines
717 B
Nix
37 lines
717 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.granted;
|
||
|
package = pkgs.granted;
|
||
|
|
||
|
in {
|
||
|
meta.maintainers = [ hm.maintainers.wcarlsen ];
|
||
|
|
||
|
options.programs.granted = {
|
||
|
enable = mkEnableOption "granted";
|
||
|
|
||
|
enableZshIntegration = mkOption {
|
||
|
default = true;
|
||
|
type = types.bool;
|
||
|
description = ''
|
||
|
Whether to enable Zsh integration.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [ package ];
|
||
|
|
||
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
||
|
function assume() {
|
||
|
export GRANTED_ALIAS_CONFIGURED="true"
|
||
|
source ${package}/bin/.assume-wrapped "$@"
|
||
|
unset GRANTED_ALIAS_CONFIGURED
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|