mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Added modules/
This commit is contained in:
33
modules/styling.nix
Normal file
33
modules/styling.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
stylix.enable = true;
|
||||
stylix.image = pkgs.fetchurl {
|
||||
url = "https://wallpaperaccess.com/full/4268145.jpg";
|
||||
sha256 = "06c8jmm7m0n4xlfki8sx6msdjjjbyydpyxs4k71d1lxn20ga2zph";
|
||||
};
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
stylix.cursor.package = pkgs.bibata-cursors;
|
||||
stylix.cursor.name = "Bibata-Modern-Classic";
|
||||
stylix.cursor.size = 24;
|
||||
stylix.fonts = {
|
||||
monospace = {
|
||||
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
};
|
||||
sansSerif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans";
|
||||
};
|
||||
serif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Serif";
|
||||
};
|
||||
sizes = {
|
||||
terminal = 16;
|
||||
desktop = 10;
|
||||
popups = 10;
|
||||
applications = 10;
|
||||
};
|
||||
};
|
||||
stylix.polarity = "dark";
|
||||
}
|
||||
Reference in New Issue
Block a user