From 89acdf4f29f1079766e33ea3fe6b6fd1cd62aad9 Mon Sep 17 00:00:00 2001 From: oqyude Date: Sun, 28 Sep 2025 18:07:57 +0300 Subject: [PATCH] 123 --- homeConfigurations/pub-vds.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 homeConfigurations/pub-vds.nix 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; + }; + }; +}