From 2c74937d34f4175aae6222a64ac68410e33ccff1 Mon Sep 17 00:00:00 2001 From: Leon Liu Date: Mon, 18 Nov 2024 18:46:38 +0900 Subject: [PATCH] update --- configuration.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index e8b6229..8c45a45 100644 --- a/configuration.nix +++ b/configuration.nix @@ -2,14 +2,21 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, lib, ... }: +{ pkgs, lib, ... }: let kubeMasterIP = "192.168.11.2"; kubeMasterHostname = "api.kube"; kubeMasterAPIServerPort = 6443; in -{ +{ + nixpkgs.overlays = [ + (final: prev: { + open-webui = prev.open-webui.overridePythonAttrs(old: { + dependencies = old.dependencies ++ [pkgs.python311Packages.emoji]; + }); + }) + ]; imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix