removed stylix

This commit is contained in:
Michael Thomson
2026-02-12 15:44:48 -05:00
parent f8857cf147
commit aca8be1054
7 changed files with 2 additions and 344 deletions

View File

@@ -104,7 +104,7 @@ vim.api.nvim_create_autocmd('FileType', {
})
-- Theme (vague)
vim.cmd('colorscheme modus_operandi')
vim.cmd('colorscheme modus_vivendi')
-- Blink
require('blink.cmp').setup({

View File

@@ -1,39 +0,0 @@
{
inputs,
pkgs,
config,
lib,
...
}: {
imports = [
inputs.stylix.homeModules.stylix
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
fonts = {
serif = {
package = pkgs.inter;
name = "Inter";
};
sansSerif = {
package = pkgs.inter;
name = "Inter";
};
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono Nerd Font Mono";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
};
targets.emacs.enable = false;
};
}