1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00
home-manager/tests/modules/programs/mise/default-settings.nix
Nikita Pedorich d17141524d
mise: add module
This adds the support for the mise program, the successor of rtx. This
commit therefore also removes the rtx module.
2024-04-10 21:27:13 +02:00

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
'';
};
}