mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
928f2528f9
This adds the support for the mise program, the successor of rtx. This commit therefore also removes the rtx module.
16 lines
345 B
Nix
16 lines
345 B
Nix
{ config, ... }: {
|
|
programs = {
|
|
mise = {
|
|
package = config.lib.test.mkStubPackage { name = "mise"; };
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
fish.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileRegex home-files/.config/fish/config.fish '/nix/store/.*mise.*/bin/mise activate fish | source'
|
|
'';
|
|
}
|
|
|