upd readme

This commit is contained in:
mjallen18
2025-02-20 10:42:31 -06:00
parent 76384ebbce
commit 7b99def18b

View File

@@ -3,8 +3,9 @@
## Usage
### Nix Flake
* Inputs: steam-rom-manager.url = "github:mjallen18/nix-steam-rom-manager";
* ```nixosConfigurations = {
Inputs: steam-rom-manager.url = "github:mjallen18/nix-steam-rom-manager";
~~~
nixosConfigurations = {
"<hostname>" = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [
@@ -18,4 +19,28 @@
}
];
};
};```
};
~~~
### Configuration
~~~
programs.steam-rom-manager = {
enable = true;
steamUsername = "<steam username>";
environmentVariables = {
romsDirectory = "/path/to/your/roms";
steamDirectory = "/home/<username>/.local/share/Steam";
};
emulators = {
ryujinx = {
enable = true;
};
pcsx2 = {
enable = true;
};
# Add other emulators as needed
};
};
~~~