feat: synchronize, hibernate

This commit is contained in:
Kat Inskip 2025-10-22 15:31:51 -07:00
parent 6bb963d9ad
commit a4b63004fb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
18 changed files with 48 additions and 110 deletions

View file

@ -3,9 +3,6 @@ _: {
enable = true;
settings = {
logo = {
type = "chafa";
source = ./nixowos.png;
height = 32;
padding = {
right = 2;
};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

View file

@ -1,11 +0,0 @@
{
pkgs,
lib,
...
}: let
inherit (lib.meta) getExe;
in {
programs.zsh.shellAliases = {
uwufetch = "${getExe pkgs.fastfetch} --chafa ${./nixowos.png} --logo-height 32";
};
}

View file

@ -1,35 +0,0 @@
{
inputs,
pkgs,
...
}: {
programs.wezterm = {
enable = false;
package = inputs.wezterm.outputs.packages.${pkgs.system}.default;
extraConfig = ''
local wezterm = require 'wezterm';
local config = {}
config.front_end = "OpenGL"
config.font = wezterm.font_with_fallback({
"Monaspace Krypton",
"JetBrains Mono",
"Noto Color Emoji",
"Symbols Nerd Font Mono",
})
config.window_padding = {
left = 8,
right = 8,
top = 8,
bottom = 8,
}
config.use_fancy_tab_bar = true
config.tab_bar_at_bottom = true
config.hide_mouse_cursor_when_typing = false
config.window_decorations = "TITLE | RESIZE"
config.warn_about_missing_glyphs = false
config.font_size = 12.0
config.check_for_updates = false
return config
'';
};
}