lock flake

fix unlocked flake error on new install
This commit is contained in:
2026-03-20 10:23:45 +01:00
parent 01667e2346
commit 9fc14abee9
5 changed files with 35 additions and 9 deletions

View File

@@ -1,8 +1,11 @@
{
inputs,
pkgs,
...
}:
let
images = pkgs.callPackage ../images { };
in
{
imports = [
./cursor.nix
@@ -36,5 +39,5 @@
};
# ── Icon for Lock & Loginscreen ───────────────────────────────────────
xdg.configFile.".face.icon".source = inputs.images + /face.icon;
xdg.configFile.".face.icon".source = "${images.face}";
}