miniserver init
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
let polymc = pkgs.callPackage ../../pkgs/polymc/default.nix { };
|
||||
in {
|
||||
{ config, lib, pkgs, ... }: {
|
||||
options.my.apps.gaming.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.gaming.enable {
|
||||
programs = {
|
||||
@@ -12,27 +10,29 @@ in {
|
||||
dedicatedServer.openFirewall = true;
|
||||
};
|
||||
};
|
||||
users.users.jawz.packages = (with pkgs; [
|
||||
mangohud # fps & stats overlay
|
||||
lutris # games launcher & emulator hub
|
||||
cartridges # games launcher
|
||||
gamemode # optimizes linux to have better gaming performance
|
||||
heroic # install epic games
|
||||
protonup-qt # update proton-ge
|
||||
#minecraft # minecraft official launcher
|
||||
ns-usbloader # load games into my switch
|
||||
# grapejuice # roblox manager
|
||||
users.users.jawz.packages =
|
||||
let polymc = pkgs.callPackage ../../pkgs/polymc/default.nix { };
|
||||
in (with pkgs; [
|
||||
mangohud # fps & stats overlay
|
||||
lutris # games launcher & emulator hub
|
||||
cartridges # games launcher
|
||||
gamemode # optimizes linux to have better gaming performance
|
||||
heroic # install epic games
|
||||
protonup-qt # update proton-ge
|
||||
#minecraft # minecraft official launcher
|
||||
ns-usbloader # load games into my switch
|
||||
# grapejuice # roblox manager
|
||||
|
||||
# emulators
|
||||
rpcs3 # ps3 emulator
|
||||
pcsx2 # ps2 emulator
|
||||
cemu # wii u emulator
|
||||
dolphin-emu # wii emulator
|
||||
#citra-nightly # 3Ds emulator
|
||||
snes9x-gtk # snes emulator
|
||||
ryujinx # switch emulator
|
||||
]) ++ [
|
||||
polymc # minecraft launcher with mod support
|
||||
];
|
||||
# emulators
|
||||
rpcs3 # ps3 emulator
|
||||
pcsx2 # ps2 emulator
|
||||
cemu # wii u emulator
|
||||
dolphin-emu # wii emulator
|
||||
#citra-nightly # 3Ds emulator
|
||||
snes9x-gtk # snes emulator
|
||||
ryujinx # switch emulator
|
||||
]) ++ [
|
||||
polymc # minecraft launcher with mod support
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user