mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
928f2528f9
This adds the support for the mise program, the successor of rtx. This commit therefore also removes the rtx module.
13 lines
310 B
Nix
13 lines
310 B
Nix
{ config, ... }: {
|
|
config = {
|
|
programs.mise = {
|
|
package = config.lib.test.mkStubPackage { name = "mise"; };
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/mise/config.toml
|
|
assertPathNotExists home-files/.config/mise/settings.toml
|
|
'';
|
|
};
|
|
}
|