Save 0ad data between boots

This commit is contained in:
Charlotte Van Petegem 2020-07-03 14:20:00 +02:00
parent e78d65d4e4
commit ad581c9f57
2 changed files with 14 additions and 1 deletions

13
configurations/zeroad.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }:
{
custom.zfs.homeLinks = [
{ path = ".config/0ad"; type = "cache"; }
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [
pkgs.zeroad
];
};
}