home: create a few common dirs via tmpfiles

This commit is contained in:
2025-04-02 12:53:12 +02:00
parent 6924ad447c
commit faaebbedca

@ -193,4 +193,13 @@ in {
platformTheme.name = "adwaita";
style.name = "adwaita-dark";
};
systemd.user.tmpfiles.rules = [
"d ${config.home.homeDirectory}/work - ${config.home.username} - - -"
"d ${config.home.homeDirectory}/git - ${config.home.username} - - -"
"d ${config.home.homeDirectory}/SD - ${config.home.username} - - -"
"d ${config.home.homeDirectory}/pictures/wallpapers - ${config.home.username} - - -"
"L ${config.xdg.dataHome}/wallpapers - ${config.home.username} - - ${config.home.homeDirectory}/pictures/wallpapers"
];
}