Configure dracula theme

This commit is contained in:
Isshi0417 2024-07-03 22:59:37 +09:00
parent 854e475083
commit f3f13be0e9
5 changed files with 43 additions and 13 deletions

View File

@ -22,8 +22,9 @@
inputs.home-manager.nixosModules.default
# Stylix colors
../../modules/nixos/stylix/ghibli.nix
#../../modules/nixos/stylix/ghibli.nix
#../../modules/nixos/stylix/kuromi.nix
../../modules/nixos/stylix/dracula.nix
# Gaming
../../modules/nixos/gaming.nix

View File

@ -36,6 +36,7 @@
git
gh
alacritty
vscode-fhs
# School
libreoffice-fresh

View File

@ -1,12 +0,0 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
bbenoist.nix
ms-python.python
ms-python.debugpy
];
};
}

View File

@ -0,0 +1,40 @@
{ pkgs, ... }:
{
stylix.enable = true;
stylix.image = ./wallpapers/dracula-pro.png;
stylix.cursor.package = pkgs.bibata-cursors;
stylix.cursor.name = "Bibata-Modern-Ice";
stylix.fonts = {
monospace = {
package = pkgs.nerdfonts.override { fonts = ["JetBrainsMono"]; };
name = "JetBrainsMono Nerd Font";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
serif = {
package = pkgs.dejavu_fonts;
name = "Dejavu Serif";
};
};
stylix.fonts.sizes = {
applications = 12;
terminal = 15;
desktop = 10;
popups = 10;
};
stylix.opacity = {
applications = 1.0;
terminal = 1.0;
desktop = 1.0;
popups = 1.0;
};
stylix.polarity = "dark";
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB