diff --git a/hand7s/default.nix b/hand7s/default.nix index c94158c..8600f50 100644 --- a/hand7s/default.nix +++ b/hand7s/default.nix @@ -36,7 +36,6 @@ "${self}/hand7s/programs/chrome.nix" "${self}/hand7s/programs/hyprlock.nix" "${self}/hand7s/programs/spicetify.nix" - "${self}/hand7s/programs/vscode.nix" "${self}/hand7s/programs/zellij.nix" "${self}/hand7s/programs/direnv.nix" "${self}/hand7s/programs/noctalia.nix" diff --git a/hand7s/options/gui.nix b/hand7s/options/gui.nix index ee67884..c440f21 100644 --- a/hand7s/options/gui.nix +++ b/hand7s/options/gui.nix @@ -95,7 +95,6 @@ in { programs = { chromium.enable = true; spicetify.enable = true; - vscode.enable = true; ghostty.enable = true; git.enable = true; }; diff --git a/hand7s/programs/vscode.nix b/hand7s/programs/vscode.nix deleted file mode 100644 index c847eaa..0000000 --- a/hand7s/programs/vscode.nix +++ /dev/null @@ -1,48 +0,0 @@ -{ - config, - pkgs, - lib, - ... -}: { - programs = { - vscode = { - package = pkgs.vscodium; - profiles = { - default = { - extensions = with pkgs.vscode-extensions; [ - jnoortheen.nix-ide - - ms-vscode-remote.vscode-remote-extensionpack - ms-vsliveshare.vsliveshare - - redhat.vscode-yaml - redhat.ansible - - nefrob.vscode-just-syntax - ]; - - userSettings = lib.mkForce { - "editor.fontFamily" = config.stylix.fonts.emoji.name; - "editor.fontSize" = 16; - - "editor.cursorBlinking" = "smooth"; - "editor.cursorSmoothCaretAnimation" = "on"; - "editor.wordWrap" = "on"; - - "workbench.colorTheme" = "Tokyo Storm AltSynt"; - "workbench.sideBar.location" = "right"; - "workbench.activityBar.location" = "top"; - "workbench.editor.editorActionsLocation" = "titleBar"; - "workbench.editor.showTabs" = "none"; - - "window.menuBarVisibility" = "hidden"; - - "terminal.integrated.cursorBlinking" = true; - - "files.autoSave" = "afterDelay"; - }; - }; - }; - }; - }; -}