hmModules/assertions: add "/share/zsh" assert from comment

main
Felix Stupp 2 months ago
parent bd15eb1880
commit 6ea5b5374e
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -2,5 +2,6 @@
imports = [
# files
./gpg-agent.nix
./zsh.nix
];
}

@ -0,0 +1,24 @@
{
config,
lib,
osConfig ? null,
...
}:
let
cfg = config.programs.zsh;
in
{
config = lib.mkIf cfg.enable {
assertions = lib.mkIf (!builtins.isNull osConfig) [
# see https://github.com/nix-community/home-manager/blob/e1391fb22e18a36f57e6999c7a9f966dc80ac073/modules/programs/zsh.nix#L353
{
assertion = cfg.enableCompletion -> builtins.elem "/share/zsh" osConfig.environment.pathsToLink;
message = ''
for useful ZSH completion, add "/share/zsh" to NixOS environment.pathsToLink
'';
}
];
};
}

@ -38,7 +38,7 @@ in
environment = {
pathsToLink = [
"/share/zsh" # required for Home-Manager ZSH autocompletion, see https://github.com/nix-community/home-manager/blob/e1391fb22e18a36f57e6999c7a9f966dc80ac073/modules/programs/zsh.nix#L353
"/share/zsh" # for ZSH completion
];
plasma6.excludePackages = with pkgs.kdePackages; [

Loading…
Cancel
Save