mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
27 lines
441 B
Nix
27 lines
441 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nix-citizen.nixosModules.default
|
|
];
|
|
|
|
/*
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
inputs.nix-citizen.packages.${system}.rsi-launcher
|
|
inputs.nix-citizen.packages.${system}.lug-helper
|
|
];
|
|
};
|
|
*/
|
|
programs = {
|
|
rsi-launcher = {
|
|
enable = true;
|
|
includeOverlay = true;
|
|
|
|
preCommands = ''
|
|
export MANGO_HUD=1;
|
|
'';
|
|
};
|
|
};
|
|
}
|