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

modules/nixos: remove symlink default permissions

This commit is contained in:
Anthony Rodriguez 2025-06-14 09:48:24 +02:00
parent d5bf1fd8f3
commit 6d4cb92bf2
No known key found for this signature in database

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;