lowercase directories and nix-index

This commit is contained in:
Noah Masur
2022-05-08 20:49:42 -04:00
parent ed2b61b03f
commit cc974cb013
6 changed files with 26 additions and 3 deletions

View File

@@ -32,6 +32,22 @@
};
home-manager.users.${config.user}.xdg = {
userDirs = {
enable = true;
createDirectories = true;
documents = "$HOME/documents";
download = "$HOME/downloads";
music = "$HOME/media/music";
pictures = "$HOME/media/images";
videos = "$HOME/media/videos";
desktop = "$HOME/other/desktop";
publicShare = "$HOME/other/public";
templates = "$HOME/other/templates";
extraConfig = { XDG_DEV_DIR = "$HOME/dev"; };
};
};
};
}