Configure dracula theme
This commit is contained in:
parent
854e475083
commit
f3f13be0e9
@ -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
|
||||
|
||||
@ -36,6 +36,7 @@
|
||||
git
|
||||
gh
|
||||
alacritty
|
||||
vscode-fhs
|
||||
|
||||
# School
|
||||
libreoffice-fresh
|
||||
|
||||
@ -1,12 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
bbenoist.nix
|
||||
ms-python.python
|
||||
ms-python.debugpy
|
||||
];
|
||||
};
|
||||
}
|
||||
40
modules/nixos/stylix/dracula.nix
Normal file
40
modules/nixos/stylix/dracula.nix
Normal 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";
|
||||
}
|
||||
BIN
modules/nixos/stylix/wallpapers/dracula-pro.png
Normal file
BIN
modules/nixos/stylix/wallpapers/dracula-pro.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
Loading…
Reference in New Issue
Block a user