File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -186,20 +186,30 @@ sudo dnf copr enable avengemedia/dms && sudo dnf install dms
186186sudo dnf copr enable avengemedia/dms-git && sudo dnf install dms
187187```
188188
189- #### nixOS - via flake
189+ #### NixOS - via flake
190190
191191``` bash
192192nix profile install github:AvengeMedia/DankMaterialShell
193193```
194194
195- #### nixOS - via home-manager
195+ #### NixOS - via home-manager
196196
197197To install using home-manager, you need to add this repo into your flake inputs:
198198
199199``` nix
200+ dgop = {
201+ url = "github:AvengeMedia/dgop";
202+ inputs.nixpkgs.follows = "nixpkgs";
203+ };
204+ dms-cli = {
205+ url = "github:AvengeMedia/danklinux";
206+ inputs.nixpkgs.follows = "nixpkgs";
207+ };
200208dankMaterialShell = {
201209 url = "github:AvengeMedia/DankMaterialShell";
202210 inputs.nixpkgs.follows = "nixpkgs";
211+ inputs.dgop.follows = "dgop";
212+ inputs.dms-cli.follows = "dms-cli";
203213};
204214```
205215
You can’t perform that action at this time.
0 commit comments