update, fonts, tex

This commit is contained in:
2025-12-07 14:25:04 -06:00
parent ec3ce17cb6
commit 89068afc9f
5 changed files with 43 additions and 101 deletions

View File

@@ -2,8 +2,8 @@
{
imports = [ ];
services.open-webui = {
#enable = true;
enable = false;
enable = true;
# enable = false;
host = "0.0.0.0";
openFirewall = true;
port = 9001;

View File

@@ -0,0 +1,9 @@
{ config, pkgs, inputs, ... }:
{
imports = [ ];
environment.systemPackages = with pkgs; [
texstudio
texliveFull
];
}

14
modules/nixos/fonts.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, inputs, ... }:
{
imports = [ ];
environment.systemPackages = with pkgs; [
font-awesome
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
nerd-fonts.noto
nerd-fonts.fira-code
nerd-fonts.droid-sans-mono
];
}