chore: move out of useless nixos directory

This commit is contained in:
Khaïs COLIN 2024-08-26 13:38:20 +02:00
parent f76bee6384
commit ec6d839450
52 changed files with 0 additions and 0 deletions

38
stylix.nix Normal file
View file

@ -0,0 +1,38 @@
{ breezex-cursor, pkgs, ... }:
{
stylix = {
enable = true;
image = ./wallpapers/nixos_inspector_tan.png;
polarity = "dark";
base16Scheme = ./neovim_default_scheme.yaml;
cursor = {
package = breezex-cursor;
name = "BreezeX-Light";
size = 24;
};
fonts = {
monospace = {
name = "VictorMono Nerd Font";
package = pkgs.nerdfonts;
};
sansSerif = {
name = "IBM Plex Sans";
package = pkgs.ibm-plex;
};
serif = {
name = "CMU Serif";
package = pkgs.cm_unicode;
};
sizes = {
desktop = 10;
popups = 10;
terminal = 10;
};
};
};
}