9 lines
147 B
Nix
9 lines
147 B
Nix
{ lib }:
|
|
hostname:
|
|
|
|
let
|
|
hash = builtins.hashString "sha256" hostname;
|
|
n = lib.strings.toIntBase 16 (builtins.substring 0 8 hash);
|
|
in
|
|
n % 24
|
|
|