Rename common to shared

This commit is contained in:
SebastianStork 2025-03-11 23:27:32 +01:00
parent 2793a33d2f
commit 842f23d449
6 changed files with 4 additions and 4 deletions

15
users/shared-home.nix Normal file
View file

@ -0,0 +1,15 @@
{ self, ... }:
{
imports = [ self.homeManagerModules.default ];
systemd.user.startServices = "sd-switch";
xdg = {
enable = true;
userDirs = {
enable = true;
createDirectories = true;
extraConfig.XDG_SCREENSHOTS_DIR = "$HOME/Pictures/Screenshots";
};
};
}