NixOS-Config/nixos/deck/greetd-steam.nix

20 lines
376 B
Nix
Raw Normal View History

2024-09-02 19:07:17 -04:00
{pkgs, ...}: {
services = {
# Configure greetd for "auto" login (single user only)
greetd = {
enable = true;
restart = true;
settings = {
terminal = {
vt = 2;
switch = true;
};
default_session = {
command = "start-gamescope-session";
user = "jimbo";
};
};
};
};
}