initial commit

This commit is contained in:
GammaKinematics 2026-03-30 13:10:42 +07:00
commit 90cff4f16a
59 changed files with 6855 additions and 0 deletions

53
stylix.nix Normal file
View file

@ -0,0 +1,53 @@
{ pkgs, ... }:
{
stylix = {
enable = true;
enableReleaseChecks = false;
polarity = "dark";
# Catppuccin Mocha theme
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
# Wallpaper (used for color scheme generation)
image = ./Wallpapers/siege.png;
# Cursor
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 20;
};
# Fonts
fonts = {
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono Nerd Font";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
sizes = {
terminal = 11;
applications = 11;
desktop = 11;
};
};
# Opacity settings
opacity = {
terminal = 0.9;
};
};
}