diff --git a/homeConfigurations/pub-vds.nix b/homeConfigurations/pub-vds.nix new file mode 100644 index 0000000..15d68db --- /dev/null +++ b/homeConfigurations/pub-vds.nix @@ -0,0 +1,27 @@ +{ + config, + pkgs, + xlib, + ... +}: +{ + imports = [ + ./minimal.nix + ]; + xdg = { + enable = true; + autostart.enable = true; + userDirs = { + enable = true; + createDirectories = false; + desktop = null; + documents = null; + download = null; + music = null; + pictures = null; + publicShare = null; + templates = null; + videos = null; + }; + }; +}