86 lines
2.1 KiB
Nix
86 lines
2.1 KiB
Nix
{
|
|
system,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [kdePackages.qtstyleplugin-kvantum];
|
|
|
|
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 = "330e15"; # Background
|
|
base01 = "4a1821"; # Lighter background (used for status bars)
|
|
base02 = "661a1f"; # Brightened Color0
|
|
base03 = "2e121a"; # Comments or secondary text
|
|
base04 = "8050a0"; # Muted Blue
|
|
base05 = "6feaff"; # Foreground
|
|
base06 = "e6e6e6"; # Bright foreground
|
|
base07 = "ffffff"; # White for highest contrast
|
|
|
|
# ANSI colors
|
|
base08 = "fb3048"; # Red (unchanged from original)
|
|
base09 = "ff5048"; # Orange/Red
|
|
base0A = "ffd700"; # Yellow
|
|
base0B = "32d787"; # Green
|
|
base0C = "1ee2ca"; # Aqua/Cyan
|
|
base0D = "a48be3"; # Blue
|
|
base0E = "d233d2"; # Magenta
|
|
base0F = "4e2026"; # Additional color used for highlighting
|
|
};
|
|
|
|
home-manager.sharedModules = [
|
|
{
|
|
programs.vscode = {
|
|
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
|
|
vscode-marketplace.max-ss.cyberpunk
|
|
vscode-marketplace.vscode-icons-team.vscode-icons
|
|
];
|
|
userSettings = {
|
|
"workbench.colorTheme" = "Activate SCARLET protocol (beta)";
|
|
"workbench.iconTheme" = "vscode-icons";
|
|
};
|
|
};
|
|
|
|
stylix.cursor = {
|
|
package = pkgs.qogir-icon-theme;
|
|
name = "Qogir";
|
|
};
|
|
}
|
|
];
|
|
|
|
stylix.cursor = {
|
|
package = pkgs.qogir-icon-theme;
|
|
name = "Qogir";
|
|
};
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|