This commit is contained in:
mjallen18
2025-02-20 10:38:03 -06:00
parent 3467cccc24
commit 76384ebbce
3 changed files with 69 additions and 8 deletions

21
README.md Normal file
View File

@@ -0,0 +1,21 @@
# Steam Rom Manager NixOS Home Manager Configuration
## Usage
### Nix Flake
* Inputs: steam-rom-manager.url = "github:mjallen18/nix-steam-rom-manager";
* ```nixosConfigurations = {
"<hostname>" = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [
home-manager.nixosModules.home-manager
{
home-manager.users.<username> = { pkgs, ...}: {
imports = [
steam-rom-manager.homeManagerModules.default
];
};
}
];
};
};```