broker: fix eval

This commit is contained in:
Sandro - 2023-12-09 22:44:19 +01:00
parent b37862b0a9
commit 199490e10c
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
let
mymqttui = pkgs.writeScriptBin "mqttui" ''
@ -132,11 +132,11 @@ in
};
};
environment.systemPackages = with pkgs; [
environment.systemPackages = [
mymqttui
];
users.motdFile = ./motd;
users.motdFile = lib.mkForce ./motd;
system.stateVersion = "22.05";
}