code and spicetify
This commit is contained in:
parent
a39ed5d107
commit
ed421eb672
@ -87,6 +87,7 @@
|
|||||||
noto-fonts
|
noto-fonts
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||||
|
monaspace
|
||||||
];
|
];
|
||||||
|
|
||||||
#services.xserver.enable = true;
|
#services.xserver.enable = true;
|
||||||
|
|||||||
@ -51,8 +51,6 @@
|
|||||||
pfetch'';
|
pfetch'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
|
||||||
# plain files is through 'home.file'.
|
|
||||||
home.file = {
|
home.file = {
|
||||||
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
|
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
|
||||||
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
|
# # 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 = {
|
home.sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
FLAKE = "/home/foglar/mysystem";
|
FLAKE = "/home/foglar/mysystem";
|
||||||
|
|||||||
@ -18,6 +18,22 @@
|
|||||||
|
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"editor.fontSize" = 16;
|
"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; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
|||||||
@ -25,6 +25,7 @@
|
|||||||
fzf.enable = true;
|
fzf.enable = true;
|
||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
tmux.enable = true;
|
tmux.enable = true;
|
||||||
|
spicetify.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.oh-my-posh = {
|
programs.oh-my-posh = {
|
||||||
@ -73,6 +74,7 @@
|
|||||||
fzf
|
fzf
|
||||||
tldr
|
tldr
|
||||||
ranger
|
ranger
|
||||||
|
spicetify-cli
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user