mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
15 lines
295 B
Nix
15 lines
295 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|