diff --git a/system/services/fwupd.nix b/system/services/fwupd.nix index d4c6542..6178ecc 100644 --- a/system/services/fwupd.nix +++ b/system/services/fwupd.nix @@ -1,7 +1,7 @@ {config, ...}: { # firmware updater for machine hardware services.fwupd = { - enbale = true; + enable = true; daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint; }; } diff --git a/system/services/logrotate.nix b/system/services/logrotate.nix index c688e09..b31d870 100644 --- a/system/services/logrotate.nix +++ b/system/services/logrotate.nix @@ -19,6 +19,6 @@ compresscmd = "${lib.getExe' pkgs.zstd "zstd"}"; compressoptions = " -Xcompression-level 10"; compressext = "zst"; - uncompresscmd = "${lib.getExe' pkgs.zstd "unzstd}"; + uncompresscmd = "${lib.getExe' pkgs.zstd "unzstd"}"; }; }