Nix/HM module: fix typo (#166)

This commit is contained in:
GGORG 2024-04-27 16:38:42 +02:00 committed by GitHub
parent 02ee7ff3bb
commit 4b3843e283
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ in {
enable = mkEnableOption "Hyprpaper, Hyprland's wallpaper utility"; enable = mkEnableOption "Hyprpaper, Hyprland's wallpaper utility";
package = mkOption { package = mkOption {
description = "The hyprpapr package"; description = "The hyprpaper package";
type = package; type = package;
default = self.packages.${pkgs.stdenv.hostPlatform.system}.hyprpaper; default = self.packages.${pkgs.stdenv.hostPlatform.system}.hyprpaper;
}; };