Skip to content

Commit

Permalink
hyprlock: add module
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman authored and rycee committed May 10, 2024
1 parent 4855bfb commit c6ddd80
Show file tree
Hide file tree
Showing 9 changed files with 566 additions and 0 deletions.
11 changes: 11 additions & 0 deletions modules/misc/news.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1618,6 +1618,17 @@ in {
https://github.com/fastfetch-cli/fastfetch for more.
'';
}

{
time = "2024-05-10T11:48:34+00:00";
condition = hostPlatform.isLinux;
message = ''
A new module is available: 'programs.hyprlock'.
Hyprland's simple, yet multi-threaded and GPU-accelerated screen
locking utility. See https://github.com/hyprwm/hyprlock for more.
'';
}
];
};
}
1 change: 1 addition & 0 deletions modules/modules.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ let
./programs/hstr.nix
./programs/htop.nix
./programs/hyfetch.nix
./programs/hyprlock.nix
./programs/i3blocks.nix
./programs/i3status-rust.nix
./programs/i3status.nix
Expand Down
127 changes: 127 additions & 0 deletions modules/programs/hyprlock.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
{ config, pkgs, lib, ... }:

with lib;

let

cfg = config.programs.hyprlock;

in {
meta.maintainers = [ maintainers.khaneliman maintainers.fufexan ];

options.programs.hyprlock = {
enable = mkEnableOption "" // {
description = ''
Whether to enable Hyprlock, Hyprland's GPU-accelerated lock screen
utility.
Note that PAM must be configured to enable hyprlock to perform
authentication. The package installed through home-manager will *not* be
able to unlock the session without this configuration.
On NixOS, it can be enabled using:
```nix
security.pam.services.hyprlock = {};
```
'';
};

package = mkPackageOption pkgs "hyprlock" { };

settings = lib.mkOption {
type = with lib.types;
let
valueType = nullOr (oneOf [
bool
int
float
str
path
(attrsOf valueType)
(listOf valueType)
]) // {
description = "Hyprlock configuration value";
};
in valueType;
default = { };
example = lib.literalExpression ''
{
general = {
disable_loading_bar = true;
grace = 300;
hide_cursor = true;
no_fade_in = false;
};
background = [
{
path = "screenshot";
blur_passes = 3;
blur_size = 8;
}
];
input-field = [
{
size = "200, 50";
position = "0, -80";
monitor = "";
dots_center = true;
fade_on_empty = false;
font_color = "rgb(202, 211, 245)";
inner_color = "rgb(91, 96, 120)";
outer_color = "rgb(24, 25, 38)";
outline_thickness = 5;
placeholder_text = '\'<span foreground="##cad3f5">Password...</span>'\';
shadow_passes = 2;
}
];
}
'';
description = ''
Hyprlock configuration written in Nix. Entries with the same key should
be written as lists. Variables' and colors' names should be quoted. See
<https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/> for more examples.
'';
};

extraConfig = lib.mkOption {
type = lib.types.lines;
default = "";
description = ''
Extra configuration lines to add to `~/.config/hypr/hyprlock.conf`.
'';
};

sourceFirst = lib.mkEnableOption ''
putting source entries at the top of the configuration
'' // {
default = true;
};

importantPrefixes = lib.mkOption {
type = with lib.types; listOf str;
default = [ "$" "monitor" "size" ]
++ lib.optionals cfg.sourceFirst [ "source" ];
example = [ "$" "monitor" "size" ];
description = ''
List of prefix of attributes to source at the top of the config.
'';
};
};

config = mkIf cfg.enable {
home.packages = [ cfg.package ];

xdg.configFile."hypr/hyprlock.conf" =
let shouldGenerate = cfg.extraConfig != "" || cfg.settings != { };
in mkIf shouldGenerate {
text = lib.optionalString (cfg.settings != { })
(lib.hm.generators.toHyprconf {
attrs = cfg.settings;
inherit (cfg) importantPrefixes;
}) + lib.optionalString (cfg.extraConfig != null) cfg.extraConfig;
};
};
}
1 change: 1 addition & 0 deletions tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ in import nmtSrc {
./modules/programs/gnome-shell
./modules/programs/gnome-terminal
./modules/programs/hexchat
./modules/programs/hyprlock
./modules/programs/i3blocks
./modules/programs/i3status-rust
./modules/programs/imv
Expand Down
27 changes: 27 additions & 0 deletions tests/modules/programs/hyprlock/basic-configuration.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
background {
monitor=
blur_passes=3
blur_size=8
path=screenshot
}

general {
disable_loading_bar=true
grace=300
hide_cursor=true
no_fade_in=false
}

input-field {
monitor=
size=200, 50
dots_center=true
fade_on_empty=false
font_color=rgb(202, 211, 245)
inner_color=rgb(91, 96, 120)
outer_color=rgb(24, 25, 38)
outline_thickness=5
placeholder_text=<span foreground="##cad3f5">Password...</span>
position=0, -80
shadow_passes=2
}
45 changes: 45 additions & 0 deletions tests/modules/programs/hyprlock/basic-configuration.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ ... }:

{
programs.hyprlock = {
enable = true;

settings = {
general = {
disable_loading_bar = true;
grace = 300;
hide_cursor = true;
no_fade_in = false;
};

background = [{
monitor = "";
path = "screenshot";
blur_passes = 3;
blur_size = 8;
}];

input-field = [{
size = "200, 50";
position = "0, -80";
monitor = "";
dots_center = true;
fade_on_empty = false;
font_color = "rgb(202, 211, 245)";
inner_color = "rgb(91, 96, 120)";
outer_color = "rgb(24, 25, 38)";
outline_thickness = 5;
placeholder_text = ''<span foreground="##cad3f5">Password...</span>'';
shadow_passes = 2;
}];
};
};

test.stubs.hyprlock = { };

nmt.script = ''
assertFileContent \
home-files/.config/hypr/hyprlock.conf \
${./basic-configuration.conf}
'';
}

0 comments on commit c6ddd80

Please sign in to comment.