type err fix

This commit is contained in:
mtgmonkey 2025-06-10 07:58:18 -04:00
parent bda6d0c689
commit 3d9deb544d

View file

@ -5,7 +5,8 @@
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pkg = pkgs.stdenv.mkDerivation {
pkg = {pkgs, ...}:
pkgs.stdenv.mkDerivation {
name = "jank-client";
src = ./.;
nativeBuildInputs = [
@ -48,8 +49,7 @@
config = lib.mkIf config.services.jank-client.enable {
environment.systemPackages = [
(lib.getExe
(pkgs.callPackage
config.services.jank-client.package))
config.services.jank-client.package)
];
virtualisation.docker = {
enable = true;