mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 17:34:03 +01:00
19 lines
401 B
Nix
19 lines
401 B
Nix
{
|
|
xdg.userDirs = {
|
|
enable = true;
|
|
createDirectories = true;
|
|
|
|
desktop = null;
|
|
templates = null;
|
|
publicShare = null;
|
|
|
|
download = "/home/user/ダウンロード";
|
|
documents = "/home/user/ドキュメント";
|
|
music = "/home/user/音楽";
|
|
pictures = "/home/user/画像";
|
|
videos = "/home/user/ビデオ";
|
|
};
|
|
|
|
xdg.configFile."user-dirs.locale".text = "ja_JP";
|
|
}
|