about summary refs log tree commit diff stats
path: root/modules/by-name/is/issue_file/module.nix
blob: f9a7b58a0d69b8389290665e7976c51c1a7aefc6 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
  config,
  self,
  pkgs,
  lib,
  ...
}: let
  lastModifiedFile = pkgs.runCommandLocal "formatDate" {} ''
    date --date='@${builtins.toString self.sourceInfo.lastModified}' +'%F %T' > $out
  '';
  lastModified = lib.strings.replaceStrings ["\n"] [""] (
    builtins.readFile lastModifiedFile
  );
in {
  environment.etc.issue = {
    # Friendly greeting on the virtual consoles.
    text = ''
      [?25l[?7l                                           
                ▗▄▄▄       ▗▄▄▄▄    ▄▄▄▖         
                ▜███▙       ▜███▙  ▟███▛         
                 ▜███▙       ▜███▙▟███▛          
                  ▜███▙       ▜██████▛           
           ▟█████████████████▙ ▜████▛     ▟▙     
          ▟███████████████████▙ ▜███▙    ▟██▙    
                 ▄▄▄▄▖           ▜███▙  ▟███▛    
                ▟███▛             ▜██▛ ▟███▛     
               ▟███▛               ▜▛ ▟███▛      
      ▟███████████▛                  ▟██████████▙
      ▜██████████▛                  ▟███████████▛
            ▟███▛ ▟▙               ▟███▛         
           ▟███▛ ▟██▙             ▟███▛          
          ▟███▛  ▜███▙           ▝▀▀▀▀           
          ▜██▛    ▜███▙ ▜██████████████████▛     
           ▜▛     ▟████▙ ▜████████████████▛      
                 ▟██████▙       ▜███▙            
                ▟███▛▜███▙       ▜███▙           
               ▟███▛  ▜███▙       ▜███▙          
               ▝▀▀▀    ▀▀▀▀▘       ▀▀▀▘          
                                                 
       NixOS ${config.system.nixos.label} 
        --------------
      
        last update: ${lastModified}
               date: \d
               time: \t
               ipv4: \4
               ipv6: \6
                tty: \l
      
    '';
  };
}