code and spicetify

This commit is contained in:
foglar 2024-10-31 20:13:23 +01:00
parent a39ed5d107
commit ed421eb672
4 changed files with 19 additions and 18 deletions

View File

@ -87,6 +87,7 @@
noto-fonts
noto-fonts-emoji
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
monaspace
];
#services.xserver.enable = true;

View File

@ -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";

View File

@ -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; [

View File

@ -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
];
};
}