❄ Personal NixOS Flake Manager
nixos home-manager go nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(readme): add usage instructions

Fuwn 44c9a32f 78d6a8ee

+30
+30
README.md
··· 17 17 Rui looks at the `FLAKE_EDITOR` environment variable for the editor to use when 18 18 opening the flake directory, but falls back to `EDITOR` if it isn't set. 19 19 20 + ## Installation 21 + 22 + ### Add to Flake Inputs 23 + 24 + ```nix 25 + { 26 + inputs.rui = { 27 + url = "github:Fuwn/rui"; 28 + inputs.nixpkgs.follows = "nixpkgs"; # Recommended 29 + }; 30 + } 31 + ``` 32 + 33 + ### Add to System or Home Manager Packages 34 + 35 + ```nix 36 + rui.packages.${pkgs.system}.default 37 + 38 + # or 39 + 40 + (import ( 41 + pkgs.fetchFromGitHub { 42 + owner = "Fuwn"; 43 + repo = "rui"; 44 + rev = "..."; # Use the current commit revision hash 45 + hash = "..."; # Use the current commit sha256 hash 46 + } 47 + )).packages.${builtins.currentSystem}.default 48 + ``` 49 + 20 50 ## `--help` 21 51 22 52 ```text