summaryrefslogblamecommitdiff
path: root/os/pc/modules/getty.nix
blob: 8c7f57e7cae6ca66a303cf1baebeeecdd14b3616 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                    
                                     












                                                                  
{ 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"
    ];
  };
}