1
0
forked from extern/nix-config
donovanglover-nix-config/home/xdg-user-dirs.nix

18 lines
508 B
Nix
Raw Normal View History

{ config, ... }: {
xdg.userDirs = {
enable = true;
2023-06-02 23:39:51 +02:00
desktop = null;
templates = null;
publicShare = null;
2023-06-02 23:39:51 +02:00
download = "/home/${config.variables.username}/";
documents = "/home/${config.variables.username}/";
music = "/home/${config.variables.username}/";
pictures = "/home/${config.variables.username}/";
videos = "/home/${config.variables.username}/";
};
2023-06-02 23:39:51 +02:00
xdg.configFile."user-dirs.locale".text = "ja_JP";
}