1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00

Update readme (#471)

This commit is contained in:
bokicoder
2025-10-17 19:01:12 +08:00
committed by GitHub
parent 4ca91cd9f7
commit a804fb849e

View File

@@ -186,20 +186,30 @@ sudo dnf copr enable avengemedia/dms && sudo dnf install dms
sudo dnf copr enable avengemedia/dms-git && sudo dnf install dms sudo dnf copr enable avengemedia/dms-git && sudo dnf install dms
``` ```
#### nixOS - via flake #### NixOS - via flake
```bash ```bash
nix profile install github:AvengeMedia/DankMaterialShell nix profile install github:AvengeMedia/DankMaterialShell
``` ```
#### nixOS - via home-manager #### NixOS - via home-manager
To install using home-manager, you need to add this repo into your flake inputs: To install using home-manager, you need to add this repo into your flake inputs:
``` nix ``` nix
dgop = {
url = "github:AvengeMedia/dgop";
inputs.nixpkgs.follows = "nixpkgs";
};
dms-cli = {
url = "github:AvengeMedia/danklinux";
inputs.nixpkgs.follows = "nixpkgs";
};
dankMaterialShell = { dankMaterialShell = {
url = "github:AvengeMedia/DankMaterialShell"; url = "github:AvengeMedia/DankMaterialShell";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.dgop.follows = "dgop";
inputs.dms-cli.follows = "dms-cli";
}; };
``` ```
@@ -674,7 +684,7 @@ cp -R ./PLUGINS/ExampleEmojiPlugin ~/.config/DankMaterialShell/plugins
**Only install plugins from TRUSTED sources.** Plugins execute QML and javascript at runtime, plugins from third parties should be reviewed before enabling them in dms. **Only install plugins from TRUSTED sources.** Plugins execute QML and javascript at runtime, plugins from third parties should be reviewed before enabling them in dms.
### nixOS - via home-manager ### NixOS - via home-manager
Add the following to your home-manager config to install a plugin: Add the following to your home-manager config to install a plugin: