This commit is contained in:
Dmitriy Kholkin 2023-09-16 00:51:36 +03:00
parent 9bdad8779d
commit e5356beece
3 changed files with 2 additions and 5 deletions

View File

@ -112,7 +112,6 @@
inputs.nixos-generators.packages.${pkgs.hostPlatform.system}.nixos-generate
pkgs.prismlauncher
pkgs.piper
pkgs.osu-lazer-bin
pkgs.nix-alien
# pkgs.nix-init
pkgs.nixpkgs-review

View File

@ -2,14 +2,10 @@
imports = [ inputs.aagl.nixosModules.default ];
nix.settings = inputs.aagl.nixConfig;
programs.anime-borb-launcher.enable = true;
programs.anime-game-launcher.enable = true;
programs.honkers-railway-launcher.enable = true;
networking.mihoyo-telemetry.block = lib.mkForce true;
persist.state.homeDirectories = [
".local/share/anime-borb-launcher"
".local/share/anime-game-launcher"
".local/share/honkers-railway-launcher"
];
}

View File

@ -1,10 +1,12 @@
{ pkgs, lib, config, ... }: {
home-manager.users.${config.mainuser}.home.packages = [
pkgs.lutris pkgs.bottles
pkgs.osu-lazer-bin
];
persist.state.homeDirectories = [
".config/lutris"
".local/share/lutris"
".local/share/bottles"
".local/share/osu"
];
}