1
Fork 0
mirror of https://github.com/RGBCube/hjem synced 2025-10-13 13:12:16 +00:00

Merge pull request #36 from nezia1/remove-symlink-permissions

modules/nixos: remove symlink default permissions
This commit is contained in:
éclairevoyant 2025-06-14 12:03:55 +00:00 committed by GitHub
commit f324c104f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,8 +20,6 @@
linker = getExe cfg.linker;
manifests = let
defaultFilePerms = "644";
mapFiles = _: files:
lib.attrsets.foldlAttrs (
accum: _: value:
@ -32,7 +30,6 @@
++ lib.singleton {
type = "symlink";
inherit (value) source target;
permissions = defaultFilePerms;
}
) []
files;