mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
13 lines
343 B
Nix
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}
|
|
'';
|
|
}
|