mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
Rename common home module
This commit is contained in:
parent
8aac1d811a
commit
dc68c4951e
2 changed files with 1 additions and 1 deletions
19
users/common-home.nix
Normal file
19
users/common-home.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ self, ... }:
|
||||
{
|
||||
imports = [
|
||||
self.homeManagerModules.default
|
||||
self.wrappers.default
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
xdg = {
|
||||
enable = true;
|
||||
userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
extraConfig.XDG_SCREENSHOTS_DIR = "$HOME/Pictures/Screenshots";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue