This commit is contained in:
4DBug
2026-03-07 10:52:18 -06:00
parent 5bc2bbef6c
commit cc710ef85d
9 changed files with 285 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
{ den, ... }: {
den.aspects.gaming = {
includes = with den.aspects; [ steam roblox hytale polytoria game-tools emulators ];
includes = with den.aspects; [ steam roblox hytale polytoria game-tools emulators star-citizen ];
};
}

View File

@@ -1,3 +1,11 @@
{
{ inputs, ... }: {
den.aspects.star-citizen = {
nixos = { pkgs, ... }: {
imports = [ inputs.nix-citizen.nixosModules.default ];
environment.systemPackages = with pkgs; [
inputs.nix-citizen.packages.${system}.rsi-launcher
];
};
};
}