mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2026-05-09 04:08:01 +02:00
Change stdenv.hostPlatform.system because "system" is deprecated
This commit is contained in:
parent
06c0749a0d
commit
774c08ef0c
1 changed files with 2 additions and 2 deletions
|
|
@ -72,7 +72,7 @@ this:
|
|||
enable = true;
|
||||
# ...
|
||||
plugins = [
|
||||
inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars
|
||||
inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprbars
|
||||
# ...
|
||||
];
|
||||
};
|
||||
|
|
@ -84,7 +84,7 @@ If you don't use Home Manager:
|
|||
```nix
|
||||
{ lib, pkgs, inputs, ... }:
|
||||
with lib; let
|
||||
hyprPluginPkgs = inputs.hyprland-plugins.packages.${pkgs.system};
|
||||
hyprPluginPkgs = inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system};
|
||||
hypr-plugin-dir = pkgs.symlinkJoin {
|
||||
name = "hyrpland-plugins";
|
||||
paths = with hyprPluginPkgs; [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue