Add ly path to persistence to keep username and session saved
This commit is contained in:
parent
30714ecea0
commit
e861aa0faf
3 changed files with 8 additions and 5 deletions
|
@ -8,7 +8,6 @@
|
|||
Policy.AutoEnable = "true";
|
||||
};
|
||||
};
|
||||
|
||||
environment.persistence."/persist".directories = [ "/var/lib/bluetooth" ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkIf config.system.desktop.enable {
|
||||
services.displayManager.ly = {
|
||||
enable = config.system.desktop.enable;
|
||||
enable = true;
|
||||
settings.vi_mode = true;
|
||||
};
|
||||
environment.persistence."/persist".directories = [ "/etc/ly" ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
services.sunshine = {
|
||||
enable = config.system.desktop.enable;
|
||||
autoStart = false;
|
||||
capSysAdmin = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue