nixos/home/xdg/home.nix
514fpv ae9d676e3d
feat(xdg): add persistence and configure paths
The default xdg directories are noisy and unhelpful.
2024-01-02 14:53:03 +08:00

22 lines
505 B
Nix

{ config
, ... }: {
xdg = {
enable = true;
userDirs = let
home = config.home.homeDirectory;
local = "${home}/local";
in {
enable = true;
createDirectories = true;
download = "${home}/dl";
desktop = "${local}/desktop";
documents = "${local}/documents";
music = "${local}/music";
pictures = "${local}/pictures";
publicShare = "${local}/public";
templates = "${local}/templates";
videos = "${local}/videos";
};
};
}