84 lines
2.0 KiB
Nix
84 lines
2.0 KiB
Nix
{
|
|
system,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
stylix.enable = true;
|
|
|
|
stylix.image = ./wallpaper.jpg;
|
|
|
|
stylix.base16Scheme = {
|
|
slug = "daemon-2-0";
|
|
scheme = "Daemon 2.0 by Converted from Konsole";
|
|
author = "Converted from Konsole";
|
|
|
|
# Base colors
|
|
base00 = "210e15"; # Background
|
|
base01 = "320d14"; # BackgroundFaint (Color0)
|
|
base02 = "5df4fe"; # Foreground (Main)
|
|
base03 = "200d14"; # Color0Faint (Gray shade for comments or lighter background elements)
|
|
base04 = "9370db"; # Color4 (Blue)
|
|
base05 = "93f4fe"; # ForegroundIntense (Standard text)
|
|
base06 = "ffffff"; # Color0Intense (Bright white color for highlights)
|
|
base07 = "ffffff"; # Maximum brightness for foreground or UI elements
|
|
|
|
# ANSI colors
|
|
base08 = "fb3048"; # Red (Color1)
|
|
base09 = "ff5048"; # Orange/Red (Color6)
|
|
base0A = "fdf500"; # Yellow (Color3)
|
|
base0B = "28c775"; # Green (Color7)
|
|
base0C = "1ac5b0"; # Aqua/Cyan (Color2)
|
|
base0D = "9370db"; # Blue (Color4)
|
|
base0E = "cb1dcd"; # Magenta (Color5)
|
|
base0F = "320d14"; # Darker tone for special elements
|
|
};
|
|
|
|
home-manager.sharedModules = [
|
|
{
|
|
programs.vscode = {
|
|
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
|
|
vscode-marketplace.sainnhe.everforest
|
|
vscode-marketplace.vscode-icons-team.vscode-icons
|
|
];
|
|
userSettings = {
|
|
"workbench.colorTheme" = "Everforest Dark";
|
|
"workbench.iconTheme" = "vscode-icons";
|
|
};
|
|
};
|
|
|
|
stylix.cursor = {
|
|
name = "Breeze";
|
|
size = 24;
|
|
};
|
|
}
|
|
];
|
|
|
|
stylix.cursor = {
|
|
name = "Breeze";
|
|
size = 24;
|
|
};
|
|
|
|
stylix.fonts = {
|
|
serif = {
|
|
package = pkgs.dejavu_fonts;
|
|
name = "DejaVu Serif";
|
|
};
|
|
|
|
sansSerif = {
|
|
package = pkgs.dejavu_fonts;
|
|
name = "DejaVu Sans";
|
|
};
|
|
|
|
monospace = {
|
|
package = pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];};
|
|
name = "JetBrainsMono Nerd Font";
|
|
};
|
|
|
|
emoji = {
|
|
package = pkgs.noto-fonts-emoji;
|
|
name = "Noto Color Emoji";
|
|
};
|
|
};
|
|
}
|