mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
stylix, hyprland
This commit is contained in:
parent
db68f9d460
commit
b440038b65
39 changed files with 704 additions and 226 deletions
77
nixcfgs/users/js0ny/packages/stylix.nix
Normal file
77
nixcfgs/users/js0ny/packages/stylix.nix
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
{pkgs, ...}: let
|
||||
my-catppuccin-kde = pkgs.catppuccin-kde.override {
|
||||
flavour = [
|
||||
"mocha"
|
||||
"latte"
|
||||
];
|
||||
accents = ["pink"];
|
||||
winDecStyles = ["classic"];
|
||||
};
|
||||
in {
|
||||
home.packages = with pkgs; [
|
||||
catppuccin
|
||||
# my-catppuccin-gtk
|
||||
my-catppuccin-kde
|
||||
catppuccin-fcitx5
|
||||
];
|
||||
|
||||
catppuccin = {
|
||||
enable = false;
|
||||
flavor = "mocha";
|
||||
accent = "pink";
|
||||
zed.enable = false;
|
||||
zsh-syntax-highlighting.enable = false;
|
||||
nvim.enable = false; # Defined in lua config
|
||||
};
|
||||
stylix = {
|
||||
enable = true;
|
||||
autoEnable = true;
|
||||
|
||||
fonts = {
|
||||
sansSerif = {
|
||||
package = pkgs.lxgw-neoxihei;
|
||||
name = "LXGW Neo XiHei";
|
||||
};
|
||||
|
||||
serif = {
|
||||
package = pkgs.lxgw-wenkai;
|
||||
name = "LXGW WenKai";
|
||||
};
|
||||
|
||||
monospace = {
|
||||
package = pkgs.maple-mono.NF-CN;
|
||||
name = "Maple Mono NF CN";
|
||||
};
|
||||
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-emoji-blob-bin;
|
||||
name = "Blobmoji";
|
||||
};
|
||||
};
|
||||
|
||||
cursor = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 24;
|
||||
};
|
||||
|
||||
icons = {
|
||||
enable = true;
|
||||
light = "Papirus-Light";
|
||||
dark = "Papirus-Dark";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
};
|
||||
|
||||
targets = {
|
||||
neovide.enable = false;
|
||||
neovim.enable = false;
|
||||
firefox = {
|
||||
profileNames = ["default"];
|
||||
colorTheme.enable = false; # Firefox Color
|
||||
};
|
||||
};
|
||||
|
||||
image = ./wallpaper.jpg;
|
||||
polarity = "dark";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue