Chore: alejandra

This commit is contained in:
Peritia 2026-03-02 15:48:09 +01:00
parent bba1ac685f
commit 5596cdc23a
5 changed files with 30 additions and 40 deletions

View file

@ -2,6 +2,5 @@
imports = [
# Main entry:
./main.nix
];
}

View file

@ -1,11 +1,14 @@
{ config, lib, nixosVista, ... }:
let
{
config,
lib,
nixosVista,
...
}: let
root = nixosVista;
cfg = root.hyprlock;
hyprlockConfig = ''
general = {
disable_loading_bar = true;
grace = 0;
@ -82,12 +85,11 @@ let
}
];
'';
in
{
in {
config = lib.mkIf cfg.enable {
programs.hyprlock = {
enable = true;
extraConfig = hyprlockConfig + "\n" + cfg.extraConfig;
};
};
}
}