change xdg folders to flake variables

This commit is contained in:
2026-05-06 18:24:17 +02:00
parent 5675c7e388
commit 3f463c5dc7

View File

@@ -1,4 +1,4 @@
{ ... }: { userConfig, ... }:
let let
browserFallback = [ browserFallback = [
@@ -52,12 +52,12 @@ in
enable = true; enable = true;
createDirectories = true; createDirectories = true;
desktop = null; desktop = null;
documents = "$HOME/Dokumenty"; documents = userConfig.pathConfig.documents;
download = "$HOME/Pobrane"; download = userConfig.pathConfig.downloads;
music = null; music = null;
pictures = "$HOME/Obrazy"; pictures = userConfig.pathConfig.pictures;
videos = "$HOME/Video"; videos = userConfig.pathConfig.video;
projects = "$HOME/Kodowanie"; projects = userConfig.pathConfig.projects;
templates = null; templates = null;
publicShare = null; publicShare = null;
setSessionVariables = true; setSessionVariables = true;