mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
18 lines
380 B
Nix
18 lines
380 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
xdg = {
|
|
enable = true;
|
|
userDirs = {
|
|
enable = true;
|
|
pictures = "$HOME/media";
|
|
videos = "$HOME/media/videos";
|
|
documents = "$HOME/docs";
|
|
download = "$HOME/downloads";
|
|
desktop = "$HOME/tmp";
|
|
templates = "$HOME/tmp";
|
|
publicShare = "$HOME/shared";
|
|
music = "$HOME/media-share/music";
|
|
};
|
|
};
|
|
}
|