diff --git a/stylix/themes/default/default.nix b/stylix/themes/default/default.nix new file mode 100644 index 00000000..b72d243a --- /dev/null +++ b/stylix/themes/default/default.nix @@ -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; + }; +} diff --git a/stylix/themes/default/home-manager/nixvim.nix b/stylix/themes/default/home-manager/nixvim.nix new file mode 100644 index 00000000..b51eda1b --- /dev/null +++ b/stylix/themes/default/home-manager/nixvim.nix @@ -0,0 +1,4 @@ +{ lib, ... }: { + programs.nixvim.colorscheme = lib.mkForce "ayu-mirage"; + stylix.targets.nixvim.enable = false; +}