mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
17 lines
325 B
Nix
17 lines
325 B
Nix
|
{ config, ... }: {
|
||
|
programs = {
|
||
|
mise = {
|
||
|
package = config.lib.test.mkStubPackage { name = "mise"; };
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
};
|
||
|
|
||
|
zsh.enable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileRegex home-files/.zshrc 'eval "$(/nix/store/.*mise.*/bin/mise activate zsh)"'
|
||
|
'';
|
||
|
}
|
||
|
|