rtx: add module (#4051)

This commit is contained in:
Nikita Pedorich 2023-06-07 10:32:56 +02:00 committed by GitHub
parent 28614ed7a1
commit 3512a6dafb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 193 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ config, ... }: {
config = {
programs.rtx = {
package = config.lib.test.mkStubPackage { name = "rtx"; };
enable = true;
};
nmt.script = ''
assertPathNotExists home-files/.config/rtx/config.toml
'';
};
}