51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
# hosts/FredOS-Gaming.nix
|
|
{ config, pkgs, lib, inputs, ... }:
|
|
{
|
|
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
|
|
environment.systemPackages = with pkgs; [
|
|
lutris
|
|
#(heroic.override {
|
|
# extraPkgs = pkgs: with pkgs; [
|
|
# adwaita-icon-theme
|
|
# ];
|
|
#})
|
|
mangohud
|
|
(pkgs.symlinkJoin {
|
|
name = "goofcord-wrapped";
|
|
paths = [ goofcord ];
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
postBuild = ''
|
|
rm $out/bin/goofcord
|
|
makeWrapper ${goofcord}/bin/goofcord $out/bin/goofcord \
|
|
--add-flags "--class=GoofCord"
|
|
'';
|
|
})
|
|
lsfg-vk
|
|
lsfg-vk-ui
|
|
faugus-launcher
|
|
adwaita-icon-theme
|
|
mission-center
|
|
geary
|
|
wowup-cf
|
|
adwsteamgtk
|
|
proton-vpn
|
|
onlyoffice-desktopeditors
|
|
vscodium
|
|
];
|
|
|
|
programs.nix-ld.enable = true;
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
package = pkgs.steam.override {
|
|
extraPkgs = pkgs: with pkgs; [
|
|
adwaita-icon-theme
|
|
];
|
|
};
|
|
};
|
|
|
|
boot.loader.systemd-boot.configurationLimit = 5;
|
|
boot.initrd.systemd.enable = true;
|
|
};
|
|
}
|