mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
config: disable user-dirs generation for homeConfigurations
This commit is contained in:
parent
c410ece05a
commit
9d9d5e240f
@ -356,6 +356,11 @@
|
||||
path = ./users/home-manager/${name};
|
||||
extraModules = [
|
||||
({ pkgs, config, ... }: {
|
||||
# Don't create the user directories since they are assumed to
|
||||
# be already created by a pre-installed system (which should
|
||||
# already handle them).
|
||||
xdg.userDirs.createDirectories = false;
|
||||
|
||||
# To be able to use the most of our config as possible, we want
|
||||
# both to use the same overlays.
|
||||
nixpkgs.overlays = overlays;
|
||||
|
Loading…
Reference in New Issue
Block a user