2023-04-30 04:30:15 +02:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
{
|
2023-04-27 01:08:20 +02:00
|
|
|
home.packages = [
|
|
|
|
pkgs.lutris
|
|
|
|
];
|
|
|
|
|
|
|
|
home.persistence."/persist/home/adrielus".directories = [
|
2023-04-30 04:30:15 +02:00
|
|
|
("Lutris/.config/lutris") # General config data
|
2023-04-27 01:08:20 +02:00
|
|
|
".cache/lutris/banners" # Game banners
|
|
|
|
".cache/lutris/coverart" # Game cover art
|
|
|
|
|
|
|
|
# Aparently IO intensive stuff like games prefer symlinks?
|
|
|
|
{ directory = "Games/Lutris"; method = "symlink"; } # Lutris games
|
|
|
|
];
|
|
|
|
}
|