Nix/Plugins: clarify plugin example

This commit is contained in:
Mihai Fufezan 2024-11-06 22:55:42 +02:00
parent d0c0ac1e8c
commit 9018cb76cf
Signed by: fufexan
SSH key fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg

View file

@ -78,16 +78,15 @@ using a general function, `mkHyprlandPlugin`. Any plugin can be made to work
with it. The general usage is presented below, exemplified through hy3's with it. The general usage is presented below, exemplified through hy3's
derivation: derivation:
```nix ```nix {filename="plugin.nix"}
{pkgs, ...}: { {
hy3 = pkgs.callPackage ({
lib, lib,
fetchFromGitHub, fetchFromGitHub,
cmake, cmake,
hyprland, hyprland,
hyprlandPlugins, hyprlandPlugins,
}: }:
hyprlandPlugins.mkHyprlandPlugin pkgs.hyprland { hyprlandPlugins.mkHyprlandPlugin hyprland {
pluginName = "hy3"; pluginName = "hy3";
version = "0.39.1"; version = "0.39.1";
@ -110,9 +109,15 @@ derivation:
description = "Hyprland plugin for an i3 / sway like manual tiling layout"; description = "Hyprland plugin for an i3 / sway like manual tiling layout";
license = lib.licenses.gpl3; license = lib.licenses.gpl3;
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [aacebedo];
}; };
}); }
```
```nix {filename="home.nix"}
{pkgs, ...}: {
wayland.windowManager.hyprland.plugins = [
(pkgs.callPackage ./plugin.nix {})
];
} }
``` ```