mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: synchronize, hibernate
This commit is contained in:
parent
6bb963d9ad
commit
a4b63004fb
18 changed files with 48 additions and 110 deletions
|
|
@ -22,22 +22,22 @@
|
|||
terminal = 0.9;
|
||||
popups = 0.8;
|
||||
};
|
||||
polarity = "dark";
|
||||
fonts = {
|
||||
sansSerif = {
|
||||
name = "Jost";
|
||||
package = pkgs.jost;
|
||||
name = "CozetteCrossedSevenVector";
|
||||
package = pkgs.cozette;
|
||||
};
|
||||
serif = {
|
||||
name = "Libre Baskerville";
|
||||
package = pkgs.libre-baskerville;
|
||||
};
|
||||
monospace = {
|
||||
name = "Monaspace Krypton";
|
||||
package = pkgs.monaspace;
|
||||
name = "CozetteCrossedSevenVector";
|
||||
package = pkgs.cozette;
|
||||
};
|
||||
};
|
||||
autoEnable = true;
|
||||
polarity = "light";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 |
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue