Added and switched to dracula theme
This commit is contained in:
@@ -89,7 +89,7 @@
|
|||||||
# Theme Modules
|
# Theme Modules
|
||||||
stylix.nixosModules.stylix
|
stylix.nixosModules.stylix
|
||||||
./themes/targets/all.nix
|
./themes/targets/all.nix
|
||||||
./themes/daemon
|
./themes/dracula
|
||||||
|
|
||||||
# Host Module
|
# Host Module
|
||||||
./hosts/Equinox
|
./hosts/Equinox
|
||||||
|
|||||||
59
themes/dracula/default.nix
Normal file
59
themes/dracula/default.nix
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
{
|
||||||
|
system,
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
stylix.enable = true;
|
||||||
|
|
||||||
|
stylix.image = ./wallpaper.png;
|
||||||
|
|
||||||
|
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/spaceduck.yaml";
|
||||||
|
|
||||||
|
home-manager.sharedModules = [
|
||||||
|
{
|
||||||
|
programs.vscode = {
|
||||||
|
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
|
||||||
|
vscode-marketplace.evondev.dracula-high-contrast
|
||||||
|
vscode-marketplace.vscode-icons-team.vscode-icons
|
||||||
|
];
|
||||||
|
userSettings = {
|
||||||
|
"workbench.colorTheme" = "Evondev Dracula Night Contrast";
|
||||||
|
"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/dracula/wallpaper.png
Normal file
BIN
themes/dracula/wallpaper.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 475 KiB |
Reference in New Issue
Block a user