diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-22 18:40:40 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-22 18:40:40 +0300 |
commit | d15dd3bb76eec18de959bcf3992a3700cbbd19a0 (patch) | |
tree | a4dcaf9f4ce2e2742a1e8c314f21150c36e3e10d | |
parent | 655687c6831655c7c2cd8c94f8bc891942a2b366 (diff) | |
download | nixos-configuration-d15dd3bb76eec18de959bcf3992a3700cbbd19a0.tar.gz nixos-configuration-d15dd3bb76eec18de959bcf3992a3700cbbd19a0.tar.bz2 nixos-configuration-d15dd3bb76eec18de959bcf3992a3700cbbd19a0.zip |
feat: trying out this new terminal font
-rw-r--r-- | common/variables.nix | 2 | ||||
-rw-r--r-- | home-manager/stvnliu/nixvim/lsp.nix | 6 | ||||
-rw-r--r-- | nixos/fonts.nix | 1 |
3 files changed, 5 insertions, 4 deletions
diff --git a/common/variables.nix b/common/variables.nix index acabdfc..61384e4 100644 --- a/common/variables.nix +++ b/common/variables.nix @@ -32,7 +32,7 @@ myAutostartCommands = ["${pkgs.brightnessctl}/bin/brightnessctl s 64"]; }; myConfigLocation = "/home/${myUserName}/nix-conf"; - desktopFontFullName = "BlexMono Nerd Font"; + desktopFontFullName = "Monocraft Nerd Font"; myAutostartCommands = [ "fcitx5" "${pkgs.foot}/bin/foot --server -f \"${desktopFontFullName}:size=12\" -o colors.alpha=0.85" diff --git a/home-manager/stvnliu/nixvim/lsp.nix b/home-manager/stvnliu/nixvim/lsp.nix index 92f93f5..9861ba4 100644 --- a/home-manager/stvnliu/nixvim/lsp.nix +++ b/home-manager/stvnliu/nixvim/lsp.nix @@ -8,14 +8,14 @@ clangd.enable = true; fsautocomplete.enable = true; gopls.enable = true; - nil-ls.enable = true; + nil_ls.enable = true; #nixd.enable = true; - rust-analyzer = { + rust_analyzer = { enable = true; installRustc = true; installCargo = true; }; - ts-ls.enable = true; + ts_ls.enable = true; }; keymaps.lspBuf = { "gd" = "definition"; diff --git a/nixos/fonts.nix b/nixos/fonts.nix index 7182094..17a46fb 100644 --- a/nixos/fonts.nix +++ b/nixos/fonts.nix @@ -27,5 +27,6 @@ ]; } ) + monocraft ]; } |