diff options
-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 ]; } |