about summary refs log tree commit diff stats
path: root/modules/system/services/issue_file/default.nix
blob: 930be1d94b58fd1a9f0d582f61516eb96a882d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{config, ...}: {
  environment.etc.issue = {
    # Friendly greeting on the virtual consoles.
    text = ''
      [?25l[?7l                                           
                ▗▄▄▄       ▗▄▄▄▄    ▄▄▄▖         
                ▜███▙       ▜███▙  ▟███▛         
                 ▜███▙       ▜███▙▟███▛          
                  ▜███▙       ▜██████▛           
           ▟█████████████████▙ ▜████▛     ▟▙     
          ▟███████████████████▙ ▜███▙    ▟██▙    
                 ▄▄▄▄▖           ▜███▙  ▟███▛    
                ▟███▛             ▜██▛ ▟███▛     
               ▟███▛               ▜▛ ▟███▛      
      ▟███████████▛                  ▟██████████▙
      ▜██████████▛                  ▟███████████▛
            ▟███▛ ▟▙               ▟███▛         
           ▟███▛ ▟██▙             ▟███▛          
          ▟███▛  ▜███▙           ▝▀▀▀▀           
          ▜██▛    ▜███▙ ▜██████████████████▛     
           ▜▛     ▟████▙ ▜████████████████▛      
                 ▟██████▙       ▜███▙            
                ▟███▛▜███▙       ▜███▙           
               ▟███▛  ▜███▙       ▜███▙          
               ▝▀▀▀    ▀▀▀▀▘       ▀▀▀▘          
                                                 
       NixOS ${config.system.nixos.label} 
        --------------
      
        date: \d
        time: \t
        ipv4: \4
        ipv6: \6
        tty: \l
      
    '';
  };
}