mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
autoenv: init at 0-unstable-2024-10-16 (#349058)
This commit is contained in:
commit
23f98b65be
2 changed files with 67 additions and 0 deletions
32
nixos/modules/programs/autoenv.nix
Normal file
32
nixos/modules/programs/autoenv.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.programs.autoenv;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
programs.autoenv = {
|
||||
enable = lib.mkEnableOption "autoenv";
|
||||
package = lib.mkPackageOption pkgs "autoenv" { };
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = [ pkgs.autoenv ];
|
||||
|
||||
programs = {
|
||||
zsh.interactiveShellInit = ''
|
||||
source ${cfg.package}/share/autoenv/activate.sh
|
||||
'';
|
||||
|
||||
bash.interactiveShellInit = ''
|
||||
source ${cfg.package}/share/autoenv/activate.sh
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue