mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
hyprland: emphasize usage of the NixOS module
This commit is contained in:
parent
0a30138c69
commit
c23060ce95
1 changed files with 15 additions and 1 deletions
|
@ -40,7 +40,21 @@ in {
|
|||
];
|
||||
|
||||
options.wayland.windowManager.hyprland = {
|
||||
enable = lib.mkEnableOption "Hyprland wayland compositor";
|
||||
enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Whether to enable configuration for Hyprland, a tiling Wayland
|
||||
compositor that doesn't sacrifice on its looks.
|
||||
|
||||
::: {.note}
|
||||
This module configures Hyprland and adds it to your user's {env}`PATH`,
|
||||
but does not make certain system-level changes. NixOS users should
|
||||
enable the NixOS module with {option}`programs.hyprland.enable`, which
|
||||
makes system-level changes such as adding a desktop session entry.
|
||||
:::
|
||||
'';
|
||||
};
|
||||
|
||||
package = lib.mkPackageOption pkgs "hyprland" { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue