feat: lots of things, really

This commit is contained in:
Kat Inskip 2024-11-13 19:30:43 -05:00
parent 5448280ec8
commit 185833d1fb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
28 changed files with 200 additions and 168 deletions

View file

@ -12,6 +12,7 @@
# Music
spotify
strawberry-qt6
# Chat
fractal # Matrix

View file

@ -1,14 +1,15 @@
{ inputs, pkgs, ... }: {
{
inputs,
pkgs,
...
}: {
programs.wezterm = {
enable = true;
#package = inputs.wezterm.outputs.packages.${pkgs.system}.default;
package = inputs.wezterm.outputs.packages.${pkgs.system}.default;
extraConfig = ''
local wezterm = require 'wezterm';
return {
front_end=WebGpu,
font = wezterm.font_with_fallback({
-- /nix/store/rh47mw5pfp7w2nmkn8rlwjkmkzf11prq-monaspace-1.000/share/fonts/opentype/MonaspaceKrypton-Regular.otf, FontConfig
"Monaspace Krypton",
-- <built-in>, BuiltIn
"JetBrains Mono",
@ -22,9 +23,11 @@
"Symbols Nerd Font Mono",
}),
window_decorations = "TITLE | RESIZE",
enable_wayland = false,
warn_about_missing_glyphs = false,
font_size = 10.0,
check_for_updates = false,
show_update_window = false,
enable_tab_bar = false
}
'';