1
0
Fork 0
forked from foxora/nix

#1 hater of infinite recursion

This commit is contained in:
do butterflies cry? 2026-02-13 23:27:35 +10:00
parent 43b04c3f8a
commit a5bb1d1cc1
31 changed files with 946 additions and 851 deletions

View file

@ -1,8 +1,4 @@
{ config, inputs, pkgs, ... }:
let
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
{...}: {
programs.hyprlock = {
enable = true;
@ -16,17 +12,17 @@ in
general = {
disable_loading_bar = true;
hide_cursor = true;
immediate_render = true;
immediate_render = true;
};
background = [
{
monitor = "";
monitor = "";
path = "screenshot";
blur_passes = 3;
blur_size = 4;
}
path = "screenshot";
blur_passes = 3;
blur_size = 4;
}
];
};
};
@ -38,4 +34,3 @@ in
source = ./hypr;
};
}