Compare commits
2 commits
a5d299104f
...
b154c0e3f8
Author | SHA1 | Date | |
---|---|---|---|
b154c0e3f8 | |||
8d446a24a9 |
8 changed files with 31 additions and 10 deletions
|
@ -385,11 +385,11 @@
|
||||||
},
|
},
|
||||||
"nixos-hardware": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1696488240,
|
"lastModified": 1696592614,
|
||||||
"narHash": "sha256-m9H4XDHaO7fGXLWTgNFrKFbBbMvrJpB7Sj6BcTM/2UE=",
|
"narHash": "sha256-2gnRtjflKQ9G3X039bk/resUwf/c1GM4sojcQzP/tgA=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "6d05cccc80feaf93d5f3d6837f8c2db582b29cf8",
|
"rev": "b31be8f11493e0f79a840370fd17153cd60b9009",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -1,7 +1,28 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
berkeley-mono = pkgs.stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "berkeley-mono";
|
||||||
|
version = "1.009";
|
||||||
|
|
||||||
|
src = ../../secret/fonts/BerkeleyMono;
|
||||||
|
|
||||||
|
dontPatch = true;
|
||||||
|
dontConfigure = true;
|
||||||
|
dontBuild = true;
|
||||||
|
doCheck = false;
|
||||||
|
dontFixup = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -Dm644 -t $out/share/fonts/opentype/ *.otf
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
berkeley-mono
|
||||||
jetbrains-mono
|
jetbrains-mono
|
||||||
noto-fonts
|
noto-fonts
|
||||||
unifont
|
unifont
|
||||||
|
|
|
@ -104,8 +104,8 @@
|
||||||
:tab_max_width 42
|
:tab_max_width 42
|
||||||
:window_frame {:active_titlebar_bg colors.frame-background
|
:window_frame {:active_titlebar_bg colors.frame-background
|
||||||
:inactive_titlebar_bg colors.frame-background
|
:inactive_titlebar_bg colors.frame-background
|
||||||
:font (wezterm.font {:family "JetBrains Mono"
|
:font (wezterm.font {:family "Berkeley Mono"
|
||||||
:weight :Medium})
|
:weight :Regular})
|
||||||
:font_size 11}
|
:font_size 11}
|
||||||
:colors {:tab_bar {:background colors.frame-background
|
:colors {:tab_bar {:background colors.frame-background
|
||||||
:inactive_tab_edge colors.frame-background
|
:inactive_tab_edge colors.frame-background
|
||||||
|
@ -114,8 +114,8 @@
|
||||||
:new_tab_hover {:bg_color colors.hover-background
|
:new_tab_hover {:bg_color colors.hover-background
|
||||||
:fg_color colors.hover-foreground}}}
|
:fg_color colors.hover-foreground}}}
|
||||||
;; Fonts
|
;; Fonts
|
||||||
:font (wezterm.font_with_fallback [{:family "JetBrains Mono"
|
:font (wezterm.font_with_fallback [{:family "Berkeley Mono"
|
||||||
:weight :Medium}
|
:weight :Regular}
|
||||||
"Symbols Nerd Font"
|
"Symbols Nerd Font"
|
||||||
"Apple Symbols"
|
"Apple Symbols"
|
||||||
"Apple Color Emoji"
|
"Apple Color Emoji"
|
||||||
|
|
|
@ -286,12 +286,12 @@ in
|
||||||
};
|
};
|
||||||
nvim-lint = buildVimPlugin {
|
nvim-lint = buildVimPlugin {
|
||||||
pname = "nvim-lint";
|
pname = "nvim-lint";
|
||||||
version = "2023-10-05";
|
version = "2023-10-06";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mfussenegger";
|
owner = "mfussenegger";
|
||||||
repo = "nvim-lint";
|
repo = "nvim-lint";
|
||||||
rev = "d0e7bacfe64d86daee08789b7496b889705f8b46";
|
rev = "edb0a845bcc04e4f0c99950a360314df9111822d";
|
||||||
sha256 = "1f82vgqwwf9qkycxii65sq0lmk7dspshwsg2pw2k3j6mghl81q0c";
|
sha256 = "1sg52x48qlk5i3s3agsvkm7dabbay1d8ff3xnima57i393llksmb";
|
||||||
fetchSubmodules = false;
|
fetchSubmodules = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-Bold.otf
Normal file
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-Bold.otf
Normal file
Binary file not shown.
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-BoldItalic.otf
Normal file
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-BoldItalic.otf
Normal file
Binary file not shown.
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-Italic.otf
Normal file
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-Italic.otf
Normal file
Binary file not shown.
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-Regular.otf
Normal file
BIN
secret/fonts/BerkeleyMono/BerkeleyMono-Regular.otf
Normal file
Binary file not shown.
Loading…
Reference in a new issue