mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
12 lines
243 B
Nix
12 lines
243 B
Nix
{ config, ... }: {
|
|
config = {
|
|
programs.rtx = {
|
|
package = config.lib.test.mkStubPackage { name = "rtx"; };
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/rtx/config.toml
|
|
'';
|
|
};
|
|
}
|