Created a starCitizen module and fixed a directory typo

This commit is contained in:
Alexandre 2026-01-22 17:25:18 +01:00
parent 0181b18c5c
commit 6d794a7b5f
7 changed files with 18 additions and 7 deletions

View File

@ -18,8 +18,8 @@
}; };
# Star citizen # Star citizen
nix-gaming = { nix-citizen = {
url = "github:fufexan/nix-gaming"; url = "github:LovingMelody/nix-citizen";
}; };
nix-darwin = { nix-darwin = {

View File

@ -91,7 +91,6 @@
# $ nix search wget # $ nix search wget
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
inputs.nix-gaming.packages.${pkgs.stdenv.hostPlatform.system}.star-citizen
playerctl playerctl
# Nvidia packages # Nvidia packages
nvtopPackages.nvidia nvtopPackages.nvidia

View File

@ -8,8 +8,9 @@
../common/modules.nix ../common/modules.nix
../../modules/nixos/secrets.nix # Sops ../../modules/nixos/secrets.nix # Sops
# ../../modules/nixos/wireless.nix # For the wifi # ../../modules/nixos/wireless.nix # For the wifi
../../modules/nixos/gamming/nvidia.nix # Nvidia (Drivers and Settings) ../../modules/nixos/gaming/nvidia.nix # Nvidia (Drivers and Settings)
../../modules/nixos/gamming/steam.nix # For Steam/Proton/Lutris/MangoHUD/Heroic/Bottles ../../modules/nixos/gaming/starCitizen.nix
../../modules/nixos/gaming/steam.nix # For Steam/Proton/Lutris/MangoHUD/Heroic/Bottles
../../modules/common/spotify.nix # Spotify ../../modules/common/spotify.nix # Spotify
../../modules/common/ai.nix ../../modules/common/ai.nix
]; ];

View File

@ -21,14 +21,14 @@
"https://cache.nixos.org" "https://cache.nixos.org"
"https://nix-community.cachix.org" "https://nix-community.cachix.org"
"https://hyprland.cachix.org" "https://hyprland.cachix.org"
"https://nix-gaming.cachix.org" "https://nix-citizen.cachix.org"
]; ];
trusted-public-keys = [ trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=" "nix-citizen.cachix.org-1:lPMkWc2X8XD4/7YPEEwXKKBg+SVbYTVrAaLA2wQTKCo="
]; ];
}; };
}; };

View File

@ -0,0 +1,11 @@
{
programs = {
rsi-launcher = {
enable = true;
preCommands = ''
export MANGO_HUD=1;
'';
};
};
}