1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-22 10:19:39 +01:00
home-manager/tests/modules/programs/sbt/deprecated-options.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

18 lines
460 B
Nix

{
programs.sbt = {
enable = true;
baseConfigPath = "gone";
};
test.asserts.assertions.expected = [
(
let
offendingFile = toString ./deprecated-options.nix;
in
''
The option definition `programs.sbt.baseConfigPath' in `${offendingFile}' no longer has any effect; please remove it.
Use programs.sbt.baseUserConfigPath instead, but note that the semantics are slightly different.
''
)
];
}