mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
18 lines
327 B
Nix
18 lines
327 B
Nix
{ self, ... }:
|
|
{
|
|
imports = [
|
|
self.homeManagerModules.default
|
|
self.wrappers.default
|
|
];
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
xdg = {
|
|
enable = true;
|
|
userDirs = {
|
|
enable = true;
|
|
createDirectories = true;
|
|
extraConfig.XDG_SCREENSHOTS_DIR = "$HOME/Pictures/Screenshots";
|
|
};
|
|
};
|
|
}
|