1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/lutris/empty.nix
2025-06-28 16:28:39 -05:00

13 lines
343 B
Nix

{
programs.lutris.enable = true;
nmt.script =
let
wineRunnersDir = "home-files/.local/share/lutris/runners";
runnersDir = "home-files/.config/lutris/runners";
in
''
assertPathNotExists ${wineRunnersDir}/proton
assertPathNotExists ${wineRunnersDir}/wine
assertPathNotExists ${runnersDir}
'';
}