mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
14 lines
310 B
Nix
14 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
|
|
'';
|
|
};
|
|
}
|