1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: add impermanence path for Path Of Building

This commit is contained in:
oddlama 2024-01-13 14:31:13 +01:00
parent 1275d813c8
commit fe9ded7d17
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
3 changed files with 11 additions and 3 deletions

View file

@ -1 +0,0 @@
globals = { "vim" }

View file

@ -20,8 +20,7 @@
./i3.nix ./i3.nix
] ]
++ lib.optionals nixosConfig.graphical.gaming.enable [ ++ lib.optionals nixosConfig.graphical.gaming.enable [
./games/bottles.nix ./games
./games/minecraft.nix
]; ];
home = { home = {

View file

@ -0,0 +1,10 @@
{
imports = [
./minecraft.nix
./bottles.nix
];
home.persistence."/persist".directories = [
".local/share/pobfrontend" # Path of Building
];
}