Updated daemon theme and
This commit is contained in:
@@ -141,7 +141,7 @@
|
|||||||
./home
|
./home
|
||||||
./home/shell
|
./home/shell
|
||||||
./home/applications
|
./home/applications
|
||||||
./home/desktops/gnome
|
./home/desktops/kde
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ in {
|
|||||||
../../modules/containers.nix
|
../../modules/containers.nix
|
||||||
../../modules/virtualization.nix
|
../../modules/virtualization.nix
|
||||||
../../modules/harden.nix
|
../../modules/harden.nix
|
||||||
../../modules/gnome.nix
|
../../modules/kde.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Set networking
|
# Set networking
|
||||||
|
|||||||
Submodule scripts/nix4vscode updated: b97ec86914...e0073075b8
83
themes/daemon.old/default.nix
Normal file
83
themes/daemon.old/default.nix
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
{
|
||||||
|
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 = "3b0d12"; # Background
|
||||||
|
base01 = "4e1318"; # Lighter background (used for status bars)
|
||||||
|
base02 = "661a1f"; # Brightened Color0
|
||||||
|
base03 = "200d14"; # Comments or secondary text
|
||||||
|
base04 = "9370db"; # Color4
|
||||||
|
base05 = "5df4fe"; # Foreground
|
||||||
|
base06 = "e0e0e0"; # Bright foreground
|
||||||
|
base07 = "ffffff"; # White for highest contrast
|
||||||
|
|
||||||
|
# ANSI colors
|
||||||
|
base08 = "ff5560"; # Red (Color8)
|
||||||
|
base09 = "ff5048"; # Orange/Red
|
||||||
|
base0A = "fdf500"; # Yellow
|
||||||
|
base0B = "28c775"; # Green
|
||||||
|
base0C = "1ac5b0"; # Aqua/Cyan
|
||||||
|
base0D = "9370db"; # Blue
|
||||||
|
base0E = "cb1dcd"; # Magenta
|
||||||
|
base0F = "661a1f"; # 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
BIN
themes/daemon.old/wallpaper.jpg
Normal file
BIN
themes/daemon.old/wallpaper.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
@@ -4,6 +4,8 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
environment.systemPackages = with pkgs; [kdePackages.qtstyleplugin-kvantum];
|
||||||
|
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
|
|
||||||
stylix.image = ./wallpaper.jpg;
|
stylix.image = ./wallpaper.jpg;
|
||||||
|
|||||||
Reference in New Issue
Block a user