mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-12 01:40:58 +01:00
3119b789f8
Alejandra is written in Rust, has more tests than nixfmt, and handles non-trivial code examples in Nix better.
22 lines
469 B
Nix
22 lines
469 B
Nix
{
|
|
home-manager.sharedModules = [
|
|
{
|
|
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";
|
|
}
|
|
];
|
|
}
|