fix: disable xdg user dirs auto create
This commit is contained in:
@@ -36,8 +36,10 @@
|
||||
homeDirectory = "/home/${config.host.username}";
|
||||
};
|
||||
|
||||
xdg.userDirs.createDirectories = false;
|
||||
xdg.userDirs.download = "${config.home.homeDirectory}/dl";
|
||||
xdg.userDirs = {
|
||||
enable = false;
|
||||
createDirectories = false;
|
||||
};
|
||||
|
||||
modules."3d".printing.enable = true;
|
||||
ai-tools.opencode.enable = true;
|
||||
|
||||
@@ -46,7 +46,13 @@ in
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
xdg.systemDirs.config = [ "/etc/xdg" ];
|
||||
xdg = {
|
||||
systemDirs.config = [ "/etc/xdg" ];
|
||||
userDirs = {
|
||||
createDirectories = false;
|
||||
download = "${config.home.homeDirectory}/dl";
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
stateVersion = "25.05";
|
||||
|
||||
Reference in New Issue
Block a user