add autostart
This commit is contained in:
parent
ab37c08deb
commit
466592e7cb
1 changed files with 17 additions and 0 deletions
17
config.nix
17
config.nix
|
@ -68,6 +68,11 @@ in
|
|||
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config.startup = [
|
||||
{
|
||||
command = "firefox-esr --kiosk c3nav.de";
|
||||
}
|
||||
];
|
||||
extraConfig = ''
|
||||
set $ws1 c3nav
|
||||
default_border none
|
||||
|
@ -133,6 +138,18 @@ in
|
|||
PasswordAuthentication = false;
|
||||
};
|
||||
};
|
||||
xserver = {
|
||||
displayManager = {
|
||||
autoLogin = {
|
||||
enable = true;
|
||||
autoLogin.user = "c3terminal";
|
||||
};
|
||||
lightdm = {
|
||||
greeter.enable = false;
|
||||
lightdm.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.sway = {
|
||||
|
|
Loading…
Reference in a new issue