mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 17:34:03 +01:00
8ffb196c0b
The previous commit didn't actually work, and I shouldn't need to change the variables often, so it's much simpler to not have them. In the event that I do need to change something, rg and sd should get the job done well.
18 lines
371 B
Nix
18 lines
371 B
Nix
{
|
|
xdg.userDirs = {
|
|
enable = 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";
|
|
}
|