server7: fix eval

This commit is contained in:
Sandro - 2023-06-14 23:44:14 +02:00
parent 999999be2c
commit 96576c95d3
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
imports = [ imports = [
@ -57,7 +57,7 @@
keyfile = config.sops.secrets."ceph/osd.6/keyfile".path; keyfile = config.sops.secrets."ceph/osd.6/keyfile".path;
deviceClass = "ssd"; deviceClass = "ssd";
} ]; } ];
skyflake.storage.ceph.package = pkgs.ceph_16_2; skyflake.storage.ceph.package = lib.mkForce pkgs.ceph_16_2;
system.stateVersion = "22.11"; system.stateVersion = "22.11";
} }