11 lines
133 B
Nix
11 lines
133 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
xdg = {
|
|
enable = true;
|
|
userDirs = {
|
|
enable = true;
|
|
createDirectories = true;
|
|
};
|
|
};
|
|
}
|