chore: Make wrapper as the default option (#1013)

* Make wrapper as the default option, clean up code a little

* Update docs
This commit is contained in:
DADA30000
2025-06-20 05:33:51 +03:00
committed by GitHub
parent e03666ab5d
commit d563cdb1f6
2 changed files with 9 additions and 13 deletions

View File

@@ -194,7 +194,7 @@ Once you've set up the overlay, you can reference HyprPanel with `pkgs.hyprpanel
# install it as a system package
environment.systemPackages = with pkgs; [
# ...
inputs.hyprpanel.packages.${pkgs.system}.wrapper # this one if you want to avoid overlays/didn't enable them
inputs.hyprpanel.packages.${pkgs.system}.default # this one if you want to avoid overlays/didn't enable them
hyprpanel
# ...
];
@@ -202,7 +202,7 @@ environment.systemPackages = with pkgs; [
# or install it as a user package
users.users.<username>.packages = with pkgs; [
# ...
inputs.hyprpanel.packages.${pkgs.system}.wrapper # this one if you want to avoid overlays/didn't enable them
inputs.hyprpanel.packages.${pkgs.system}.default # this one if you want to avoid overlays/didn't enable them
hyprpanel
# ...
];
@@ -213,7 +213,7 @@ users.users.<username>.packages = with pkgs; [
# install it as a user package with home-manager
home.packages = with pkgs; [
# ...
inputs.hyprpanel.packages.${pkgs.system}.wrapper # this one if you want to avoid overlays/didn't enable them
inputs.hyprpanel.packages.${pkgs.system}.default # this one if you want to avoid overlays/didn't enable them
hyprpanel
# ...
];