Fix recursion on self
Some checks failed
Update Nix Flake / update-flake (push) Failing after 12s

This commit is contained in:
2026-03-23 21:57:18 +01:00
parent 8896788bfd
commit 64392b695e
7 changed files with 51 additions and 51 deletions

View File

@@ -1,5 +1,5 @@
{
self,
pwd,
pkgs,
config,
lib,
@@ -41,11 +41,11 @@ in {
};
sops.secrets.julian-password = {
sopsFile = ../../secrets.yaml;
sopsFile = "${pwd}/hosts/secrets-common.yaml";
neededForUsers = true;
};
home-manager.users.julian = import "${self}/homes/julian/${config.networking.hostName}.nix";
home-manager.users.julian = import "${pwd}/homes/julian/${config.networking.hostName}.nix";
security.pam.services.swaylock = {}; # Make swaylock unlocking work
}