mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-25 02:10:57 +01:00
17 lines
242 B
Nix
17 lines
242 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.ty = {
|
|
enable = true;
|
|
};
|
|
|
|
test.stubs.ty = { };
|
|
|
|
nmt.script =
|
|
let
|
|
expectedConfigPath = "home-files/.config/ty/ty.toml";
|
|
in
|
|
''
|
|
assertPathNotExists "${expectedConfigPath}"
|
|
'';
|
|
}
|