diff --git a/.luacheckrc b/.luacheckrc deleted file mode 100644 index 653f105..0000000 --- a/.luacheckrc +++ /dev/null @@ -1 +0,0 @@ -globals = { "vim" } diff --git a/users/myuser/graphical/default.nix b/users/myuser/graphical/default.nix index 657de56..d751507 100644 --- a/users/myuser/graphical/default.nix +++ b/users/myuser/graphical/default.nix @@ -20,8 +20,7 @@ ./i3.nix ] ++ lib.optionals nixosConfig.graphical.gaming.enable [ - ./games/bottles.nix - ./games/minecraft.nix + ./games ]; home = { diff --git a/users/myuser/graphical/games/default.nix b/users/myuser/graphical/games/default.nix new file mode 100644 index 0000000..e00d5fd --- /dev/null +++ b/users/myuser/graphical/games/default.nix @@ -0,0 +1,10 @@ +{ + imports = [ + ./minecraft.nix + ./bottles.nix + ]; + + home.persistence."/persist".directories = [ + ".local/share/pobfrontend" # Path of Building + ]; +}