mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 08:46:11 +01:00
patching migration
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
{
|
||||
{ lib, ... }: {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "FiraCode Nerd Font";
|
||||
name = lib.mkForce "FiraCode Nerd Font";
|
||||
size = 12;
|
||||
};
|
||||
|
||||
themeFile = "Rose Pine";
|
||||
themeFile = "rose-pine";
|
||||
|
||||
settings = {
|
||||
confirm_os_window_close = 0;
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
}: {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
package = pkgs.neovim;
|
||||
# package = pkgs.neovim;
|
||||
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
|
||||
@@ -56,7 +56,9 @@ in
|
||||
# }
|
||||
# ];
|
||||
|
||||
enableAutosuggestions = true;
|
||||
autosuggestion = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
syntaxHighlighting = {
|
||||
enable = true;
|
||||
@@ -67,12 +69,7 @@ in
|
||||
};
|
||||
|
||||
initExtra = ''
|
||||
# [[ ! -f ${./p10k.zsh} ]] || source ${./p10k.zsh}
|
||||
eval "$(zoxide init --cmd cd zsh)"
|
||||
# if [ -x "$(command -v tmux)" ] && [ -n "$DISPLAY" ] && [ -z "$TMUX" ]; then
|
||||
# exec tmux new-session -A -s $USER >/dev/null 2>&1
|
||||
# exec tmux new-session -t $USER >/dev/null 2>&1 | tmux new-session -A -s $USER >/dev/null 2>&1
|
||||
# fi
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
@@ -1,19 +1,25 @@
|
||||
{ pkgs, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
package = pkgs.vscodium-fhs;
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
ms-python.python
|
||||
ms-python.debugpy
|
||||
jnoortheen.nix-ide
|
||||
mvllow.rose-pine
|
||||
github.copilot
|
||||
github.copilot-chat
|
||||
ms-vsliveshare.vsliveshare
|
||||
rust-lang.rust-analyzer
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
|
||||
"editor.fontSize" = 18;
|
||||
"editor.fontSize" = 16;
|
||||
"editor.fontFamily" = "FiraCode Nerd Font";
|
||||
"explorer.confirmDelete" = false;
|
||||
"disable-hardware-acceleration" = true;
|
||||
"explorer.confirmDragAndDrop" = true;
|
||||
"git.openRepositoryInParentFolders" = "never";
|
||||
|
||||
@@ -47,7 +53,7 @@
|
||||
"editor.formatOnPaste" = true;
|
||||
"editor.minimap.enabled" = false;
|
||||
|
||||
"symbols.hidesExplorerArrows" = false;
|
||||
# "symbols.hidesExplorerArrows" = false;
|
||||
|
||||
"workbench.iconTheme" = "rose-pine-icons";
|
||||
"workbench.colorTheme" = "Rosé Pine";
|
||||
|
||||
@@ -353,6 +353,8 @@
|
||||
# SSH Agents
|
||||
env = SSH_AUTH_SOCK,$XDG_RUNTIME_DIR/ssh-agent.socket
|
||||
|
||||
env = NIXOS_OZONE_WL,1
|
||||
|
||||
#####################
|
||||
### LOOK AND FEEL ###
|
||||
#####################
|
||||
|
||||
Reference in New Issue
Block a user