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