forked from hacc/haccfiles
stuebinm
8c3d3bf6db
this is not entirely accurate — the lastModified attribute of a flake's self-input gives the date of the last commit, not the last deploy. But I figure it's close enough and less obscure to check than reading in the last date via nix-env. inspired by: we did no server updates for two weeks.
29 lines
992 B
Nix
29 lines
992 B
Nix
{ config, lib, pkgs, sources, ... }:
|
|
|
|
let
|
|
self = sources.self;
|
|
|
|
formatDate = date: with lib.strings;
|
|
let
|
|
year = substring 0 4 date;
|
|
month = substring 4 2 date;
|
|
day = substring 6 2 date;
|
|
hour = substring 8 2 date;
|
|
minute = substring 10 2 date;
|
|
second = substring 12 2 date;
|
|
in
|
|
"${year}-${month}-${day} ${hour}:${minute}:${second} UTC";
|
|
in
|
|
{
|
|
system.nixos.label = "${config.system.nixos.release}-haccfiles-${self.shortRev or self.dirtyShortRev}";
|
|
users.motd = ''
|
|
Welcome to ${config.networking.hostName}, running NixOS ${config.system.nixos.release}!
|
|
Built from haccfiles ${self.rev or self.dirtyRev}.
|
|
Last commit was at ${formatDate self.lastModifiedDate}.
|
|
${if self ? dirtyRev then "\nPlease remember to commit your changes.\n" else ""}
|
|
'';
|
|
|
|
# used by monit
|
|
environment.etc."haccfiles-commit".text = self.rev or self.dirtyRev;
|
|
environment.etc."haccfiles-timestamp".text = builtins.toString self.lastModified;
|
|
}
|