mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
nixos/lightdm: Fix data directory
This commit is contained in:
parent
3a67a51689
commit
e519414e1f
1 changed files with 2 additions and 1 deletions
|
@ -82,6 +82,7 @@ in
|
|||
{
|
||||
options = {
|
||||
services.xserver.displayManager.lightdm = {
|
||||
|
||||
enable = mkOption {
|
||||
default = false;
|
||||
description = ''
|
||||
|
@ -129,7 +130,7 @@ in
|
|||
|
||||
users.extraUsers.lightdm = {
|
||||
createHome = true;
|
||||
home = "/var/lib/lightdm";
|
||||
home = "/var/lib/lightdm-data";
|
||||
group = "lightdm";
|
||||
uid = config.ids.uids.lightdm;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue