mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
granted: Add override for package
I would like to use the unstable version in my home-manager so let's make it possible to override.
This commit is contained in:
parent
7170300119
commit
8ad37dcf64
1 changed files with 10 additions and 4 deletions
|
@ -5,7 +5,6 @@ with lib;
|
||||||
let
|
let
|
||||||
|
|
||||||
cfg = config.programs.granted;
|
cfg = config.programs.granted;
|
||||||
package = pkgs.granted;
|
|
||||||
|
|
||||||
in {
|
in {
|
||||||
meta.maintainers = [ hm.maintainers.wcarlsen ];
|
meta.maintainers = [ hm.maintainers.wcarlsen ];
|
||||||
|
@ -13,6 +12,13 @@ in {
|
||||||
options.programs.granted = {
|
options.programs.granted = {
|
||||||
enable = mkEnableOption "granted";
|
enable = mkEnableOption "granted";
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.granted;
|
||||||
|
defaultText = literalExpression "pkgs.granted";
|
||||||
|
description = "The granted package to install.";
|
||||||
|
};
|
||||||
|
|
||||||
enableZshIntegration =
|
enableZshIntegration =
|
||||||
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
||||||
|
|
||||||
|
@ -21,19 +27,19 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = [ package ];
|
home.packages = [ cfg.package ];
|
||||||
|
|
||||||
programs.zsh.initContent = mkIf cfg.enableZshIntegration ''
|
programs.zsh.initContent = mkIf cfg.enableZshIntegration ''
|
||||||
function assume() {
|
function assume() {
|
||||||
export GRANTED_ALIAS_CONFIGURED="true"
|
export GRANTED_ALIAS_CONFIGURED="true"
|
||||||
source ${package}/bin/assume "$@"
|
source ${cfg.package}/bin/assume "$@"
|
||||||
unset GRANTED_ALIAS_CONFIGURED
|
unset GRANTED_ALIAS_CONFIGURED
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
programs.fish.functions.assume = mkIf cfg.enableFishIntegration ''
|
programs.fish.functions.assume = mkIf cfg.enableFishIntegration ''
|
||||||
set -x GRANTED_ALIAS_CONFIGURED "true"
|
set -x GRANTED_ALIAS_CONFIGURED "true"
|
||||||
source ${package}/share/assume.fish $argv
|
source ${cfg.package}/share/assume.fish $argv
|
||||||
set -e GRANTED_ALIAS_CONFIGURED
|
set -e GRANTED_ALIAS_CONFIGURED
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue