This commit is contained in:
albert 2024-06-12 16:57:41 +09:00
parent a4c6d821c9
commit 3df8a2af3e
Signed by: albert
GPG key ID: 3895DD267CA11BA9
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
# Themes https://github.com/tinted-theming/base16-schemes
stylix = {
image = /etc/nixos/git/docs/icons/nixos/white.png;
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
autoEnable = true;
};
}

View file

@ -0,0 +1,4 @@
{ lib, ... }: {
programs.nixvim.colorscheme = lib.mkForce "ayu-mirage";
stylix.targets.nixvim.enable = false;
}