chore: cleanup theming and get nvim colors working in tmux
This commit is contained in:
parent
655bdebfc5
commit
db123caede
7 changed files with 8 additions and 21 deletions
22
systems/modules/personalisation.nix
Normal file
22
systems/modules/personalisation.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ inputs, pkgs, config, ... }: {
|
||||
imports = [ inputs.stylix.nixosModules.stylix ];
|
||||
stylix = {
|
||||
enable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
fonts = {
|
||||
serif = config.stylix.fonts.monospace;
|
||||
sansSerif = config.stylix.fonts.monospace;
|
||||
emoji = config.stylix.fonts.monospace;
|
||||
monospace = {
|
||||
package = pkgs.nerd-fonts.terminess-ttf;
|
||||
name = "Terminess Nerd Font Mono";
|
||||
};
|
||||
sizes = {
|
||||
applications = 16;
|
||||
desktop = 12;
|
||||
popups = 12;
|
||||
terminal = 16;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue