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

@@ -10,6 +10,9 @@
dock = "sh -c 'ssh -N -D \"$1\" box.bug.tools &' --";
pico = "ssh pico.sh";
ns = "nh os switch ~/nix --impure -H (hostname)";
rebuild = "ns";
};
environment.systemPackages = with pkgs.fishPlugins; [

View File

@@ -9,6 +9,9 @@
remotes = lib.mkOptionDefault [{
name = "flathub-beta";
location = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
} {
name = "RSILauncher";
location = "https://mactan-sc.github.io/rsilauncher/RSILauncher.flatpakrepo";
}];
update.auto.enable = true;
@@ -22,4 +25,4 @@
};
};
};
}
}

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
];
};
};
}