init
This commit is contained in:
21
README.md
Normal file
21
README.md
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};```
|
||||
Reference in New Issue
Block a user