Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hacky workaround

encode42 6d92631e 3fc26ea3

+4 -3
+4 -3
hosts/prospect/users/guest.nix
··· 13 13 ".nix-profile" 14 14 15 15 ".steam" 16 + ".local/share/Steam/package" 16 17 ".local/share/Steam/steamapps/common" 17 18 ]; 18 19 ··· 22 23 23 24 findDirectoryExclusions = builtins.concatStringsSep " \\\n" (map (path: 24 25 let 25 - baseExclusion = "-not -path '${config.users.users.guest.home}/${path}'"; 26 + baseExclusion = "-not -path './${config.users.users.guest.home}/${path}"; 26 27 in 27 - "${baseExclusion} ${baseExclusion}/*" 28 + "${baseExclusion}' ${baseExclusion}/*'" 28 29 ) persistentDirectories); 29 30 30 31 findFileExclusions = builtins.concatStringsSep " \\\n" (map (path: 31 - "-not -path '${config.users.users.guest.home}/${path}'" 32 + "-not -path './${config.users.users.guest.home}/${path}'" 32 33 ) persistentDirectories); 33 34 in 34 35 {