diff --git a/nixos/configuration.nix b/nixos/configuration.nix index c9493a3..05ff1fc 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -87,6 +87,7 @@ noto-fonts noto-fonts-emoji (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) + monaspace ]; #services.xserver.enable = true; diff --git a/nixos/home.nix b/nixos/home.nix index 81d5d43..1fb7c5e 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -51,8 +51,6 @@ pfetch''; }; - # Home Manager is pretty good at managing dotfiles. The primary way to manage - # plain files is through 'home.file'. home.file = { # # Building this configuration will create a copy of 'dotfiles/screenrc' in # # the Nix store. Activating the configuration will then make '~/.screenrc' a @@ -66,22 +64,6 @@ # ''; }; - # Home Manager can also manage your environment variables through - # 'home.sessionVariables'. These will be explicitly sourced when using a - # shell provided by Home Manager. If you don't want to manage your shell - # through Home Manager then you have to manually source 'hm-session-vars.sh' - # located at either - # - # ~/.nix-profile/etc/profile.d/hm-session-vars.sh - # - # or - # - # ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh - # - # or - # - # /etc/profiles/per-user/foglar/etc/profile.d/hm-session-vars.sh - # home.sessionVariables = { EDITOR = "nvim"; FLAKE = "/home/foglar/mysystem"; diff --git a/nixos/packages/programming/code.nix b/nixos/packages/programming/code.nix index 3098d2a..fe16ccf 100644 --- a/nixos/packages/programming/code.nix +++ b/nixos/packages/programming/code.nix @@ -18,6 +18,22 @@ userSettings = { "editor.fontSize" = 16; + "editor.minimap.side"= "right"; + "editor.scrollbar.vertical"= "hidden"; + "editor.scrollbar.verticalScrollbarSize"= 0; + "editor.fontLigatures"= "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09', 'liga'"; + "editor.stickyScroll.enabled"= false; + "security.workspace.trust.untrustedFiles"= "newWindow"; + "security.workspace.trust.startupPrompt"= "never"; + "security.workspace.trust.enabled"= false; + "terminal.external.linuxExec"= "kitty"; + "terminal.integrated.stickyScroll.enabled"= true; + "telemetry.telemetryLevel"= "off"; + "workbench.activityBar.location"= "hidden"; # bottom + "workbench.iconTheme"= "material-icon-theme"; + "workbench.productIconTheme"= "material-product-icons"; + "window.menuBarVisibility"= "toggle"; + "github.copilot.editor.enableAutoCompletions"= false; }; extensions = with pkgs.vscode-extensions; [ diff --git a/nixos/packages/terminal_tools.nix b/nixos/packages/terminal_tools.nix index 5d5c3e7..eb3f3cd 100644 --- a/nixos/packages/terminal_tools.nix +++ b/nixos/packages/terminal_tools.nix @@ -25,6 +25,7 @@ fzf.enable = true; neovim.enable = true; tmux.enable = true; + spicetify.enable = true; }; programs.oh-my-posh = { @@ -73,6 +74,7 @@ fzf tldr ranger + spicetify-cli ]; }; } \ No newline at end of file