mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
change xdg folders to flake variables
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ ... }:
|
||||
{ userConfig, ... }:
|
||||
|
||||
let
|
||||
browserFallback = [
|
||||
@@ -52,12 +52,12 @@ in
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
desktop = null;
|
||||
documents = "$HOME/Dokumenty";
|
||||
download = "$HOME/Pobrane";
|
||||
documents = userConfig.pathConfig.documents;
|
||||
download = userConfig.pathConfig.downloads;
|
||||
music = null;
|
||||
pictures = "$HOME/Obrazy";
|
||||
videos = "$HOME/Video";
|
||||
projects = "$HOME/Kodowanie";
|
||||
pictures = userConfig.pathConfig.pictures;
|
||||
videos = userConfig.pathConfig.video;
|
||||
projects = userConfig.pathConfig.projects;
|
||||
templates = null;
|
||||
publicShare = null;
|
||||
setSessionVariables = true;
|
||||
|
||||
Reference in New Issue
Block a user