2023-06-16 18:12:34 +02:00
|
|
|
let VARIABLES = import ../src/variables.nix; in {
|
2023-06-16 14:19:22 +02:00
|
|
|
xdg.userDirs = {
|
|
|
|
enable = true;
|
2023-06-02 23:39:51 +02:00
|
|
|
|
2023-06-16 14:19:22 +02:00
|
|
|
desktop = null;
|
|
|
|
templates = null;
|
|
|
|
publicShare = null;
|
2023-06-02 23:39:51 +02:00
|
|
|
|
2023-06-16 14:19:22 +02:00
|
|
|
download = "/home/${VARIABLES.username}/ダウンロード";
|
|
|
|
documents = "/home/${VARIABLES.username}/ドキュメント";
|
|
|
|
music = "/home/${VARIABLES.username}/音楽";
|
|
|
|
pictures = "/home/${VARIABLES.username}/画像";
|
|
|
|
videos = "/home/${VARIABLES.username}/ビデオ";
|
|
|
|
};
|
2023-06-02 23:39:51 +02:00
|
|
|
|
2023-06-16 14:19:22 +02:00
|
|
|
xdg.configFile."user-dirs.locale".text = "ja_JP";
|
2023-05-17 01:10:15 +02:00
|
|
|
}
|