Zhu
This commit is contained in:
parent
e104989e40
commit
084dc0c72b
2 changed files with 37 additions and 2 deletions
|
|
@ -21,12 +21,34 @@
|
||||||
../../users/tania
|
../../users/tania
|
||||||
];
|
];
|
||||||
sops.secrets."ssh_keys/${hwconfig.hostname}" = {};
|
sops.secrets."ssh_keys/${hwconfig.hostname}" = {};
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
# Fixes java crash because of bind mount with impermanence when loading too many mods(ex. All The Mods 9)
|
||||||
|
(self: super: {
|
||||||
|
prismlauncher = pkgs.symlinkJoin {
|
||||||
|
name = "prismlauncher";
|
||||||
|
paths = [ super.prismlauncher];
|
||||||
|
buildInputs = [ pkgs.makeWrapper ];
|
||||||
|
postBuild = ''
|
||||||
|
wrapProgram $out/bin/prismlauncher --set HOME /persist/home/kylekrein
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
})
|
||||||
|
(self: super: {
|
||||||
|
bottles = pkgs.symlinkJoin {
|
||||||
|
name = "bottles";
|
||||||
|
paths = [ super.bottles];
|
||||||
|
buildInputs = [ pkgs.makeWrapper ];
|
||||||
|
postBuild = ''
|
||||||
|
wrapProgram $out/bin/bottles --set HOME /persist/home/kylekrein
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
blender
|
blender
|
||||||
ladybird
|
ladybird
|
||||||
|
prismlauncher
|
||||||
|
|
||||||
android-tools
|
|
||||||
android-studio
|
|
||||||
#inputs.nix-gaming.packages.${pkgs.system}.star-citizen
|
#inputs.nix-gaming.packages.${pkgs.system}.star-citizen
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,19 @@ env -u SUDO_USER ${pkgs.distrobox}/bin/distrobox-enter "${containerName}" -- sud
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
unzip
|
||||||
|
wget
|
||||||
|
xdotool
|
||||||
|
xorg.xprop
|
||||||
|
xorg.xrandr
|
||||||
|
unixtools.xxd
|
||||||
|
xorg.xwininfo
|
||||||
|
yad
|
||||||
|
protonup-qt
|
||||||
|
protontricks
|
||||||
|
bottles
|
||||||
|
];
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;#!hwconfig.useImpermanence;
|
enable = true;#!hwconfig.useImpermanence;
|
||||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue