summaryrefslogtreecommitdiff
path: root/os/pc/modules/getty.nix
blob: c0d5d1c30ae0fc142682351dc7970e69903c4f84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, ... }:
let
  user = config.global.userdata.name;
in
{
  systemd.services."getty@".serviceConfig.TTYVTDisallocate = "no";

  services.getty = {
    loginOptions = "-f ${user}";
    extraArgs = [
      "--nonewline"
      "--skip-login"
      "--noclear"
      "--noissue"
    ];
  };
}