summaryrefslogblamecommitdiff
path: root/home/common/modules/xdgdirs.nix
blob: 3073a106c120c959954f0eb27802249ac36f44dd (plain) (tree)






















                                   
{ config, ... }: let
  home = config.home.homeDirectory;

  etc = home + "/etc";
  dl = home + "/dl";
in {
  xdg = {
    enable = true;

    userDirs = {
      enable = true;

      download = dl;
      desktop = etc;
      templates = etc;
      publicShare = dl;
      music = home + "/ms";
      videos = home + "/vid";
      pictures = home + "/pix";
      documents = home + "/doc";
    };
  };
}