type err fix
This commit is contained in:
parent
bda6d0c689
commit
3d9deb544d
1 changed files with 20 additions and 20 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue