aboutsummaryrefslogtreecommitdiff
path: root/config/xdg-user-dirs/default.nix
blob: e2db4543243009cf3fdad9eeb29161d55532bf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ ... }:
let
  home = builtins.getEnv "HOME";
in
{
  xdg.userDirs = {
    enable = true;
    desktop = "${home}/desktop";
    documents = "${home}/documents";
    download = "${home}/downloads";
    music = "${home}/music";
    pictures = "${home}/pictures";
    publicShare = "${home}/public";
    templates = "${home}/templates";
    videos = "${home}/videos";
  };
}