summaryrefslogtreecommitdiff
path: root/nixos/modules/system/layout.nix
blob: c36085dae16045787f776c33d74e24e008498a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:

{
  xdg.userDirs = {
    enable = true;
    createDirectories = true;
    download = "/home/cat/downloads";
    documents = "/home/cat/documents";
    pictures = "/home/cat/pictures";
    videos = "/home/cat/videos";
    music = "/home/cat/music";
    desktop = "/home/cat/desktop";
    publicShare = "/home/cat/public";
    templates = "/home/cat/templates";
  };
}