mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
[Backport release-24.11] nixos/pay-respects: actually import the module (#357375)
This commit is contained in:
commit
32078e2df4
@ -263,6 +263,7 @@
|
|||||||
./programs/openvpn3.nix
|
./programs/openvpn3.nix
|
||||||
./programs/obs-studio.nix
|
./programs/obs-studio.nix
|
||||||
./programs/partition-manager.nix
|
./programs/partition-manager.nix
|
||||||
|
./programs/pay-respects.nix
|
||||||
./programs/plotinus.nix
|
./programs/plotinus.nix
|
||||||
./programs/pqos-wrapper.nix
|
./programs/pqos-wrapper.nix
|
||||||
./programs/projecteur.nix
|
./programs/projecteur.nix
|
||||||
|
@ -11,6 +11,7 @@ let
|
|||||||
mkEnableOption
|
mkEnableOption
|
||||||
mkIf
|
mkIf
|
||||||
mkOption
|
mkOption
|
||||||
|
optionalString
|
||||||
types
|
types
|
||||||
;
|
;
|
||||||
inherit (types) str;
|
inherit (types) str;
|
||||||
@ -48,8 +49,8 @@ in
|
|||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
bash.interactiveShellInit = initScript "bash";
|
bash.interactiveShellInit = initScript "bash";
|
||||||
fish.interactiveShellInit = mkIf config.programs.fish.enable initScript "fish";
|
fish.interactiveShellInit = optionalString config.programs.fish.enable (initScript "fish");
|
||||||
zsh.interactiveShellInit = mkIf config.programs.zsh.enable initScript "zsh";
|
zsh.interactiveShellInit = optionalString config.programs.zsh.enable (initScript "zsh");
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
meta.maintainers = with maintainers; [ sigmasquadron ];
|
meta.maintainers = with maintainers; [ sigmasquadron ];
|
||||||
|
Loading…
Reference in New Issue
Block a user