added stylix

This commit is contained in:
willifan 2024-09-09 19:53:11 +02:00
parent 94096ef042
commit 0117839c8f
11 changed files with 363 additions and 28 deletions

View file

@ -60,8 +60,8 @@
gaps_in = 2;
gaps_out = 5;
border_size = 2;
"col.active_border" = "rgba(ffa44bee)";
"col.inactive_border" = "rgba(595959aa)";
# "col.active_border" = "rgba(ffa44bee)";
# "col.inactive_border" = "rgba(595959aa)";
layout = "dwindle";
@ -82,7 +82,7 @@
drop_shadow = "yes";
shadow_range = 4;
shadow_render_power = 3;
"col.shadow" = "rgba(1a1a1aee)";
# "col.shadow" = "rgba(1a1a1aee)";
};
misc = {

View file

@ -5,9 +5,9 @@
enable = true;
settings = {
preload = "/home/willifan/.config/desktop-utils/images/Bob Ross.png";
# preload = "/home/willifan/.config/desktop-utils/images/Bob Ross.png";
wallpaper = ",/home/willifan/.config/desktop-utils/images/Bob Ross.png";
# wallpaper = ",/home/willifan/.config/desktop-utils/images/Bob Ross.png";
splash = true;

View file

@ -3,8 +3,8 @@
home-manager.users.willifan = {
services.mako = {
enable = true;
backgroundColor = "#191724bb";
borderColor = "#ffa44bee";
# backgroundColor = "#191724bb";
# borderColor = "#ffa44bee";
borderRadius = 10;
borderSize = 2;

View file

@ -9,11 +9,11 @@
halign = "fill";
};
style = ''
window {
border-radius: 10px;
}
'';
# style = ''
# window {
# border-radius: 10px;
# }
# '';
};
};
}
}

View file

@ -3,12 +3,12 @@
home-manager.users.willifan = {
programs.kitty = {
enable = true;
font = {
name = "HackNerdFontMono-Regular";
package =pkgs.nerdfonts;
};
# font = {
# name = "HackNerdFontMono-Regular";
# package =pkgs.nerdfonts;
# };
settings = {
background_opacity = "0.85";
# background_opacity = "0.85";
enable_audio_bell = false;
};
};

Binary file not shown.

View file

@ -2,9 +2,10 @@
{
imports = [
./cursor.nix
./font.nix
./gtk.nix
./qt.nix
#./cursor.nix
#./font.nix
#./gtk.nix
#./qt.nix
./stylix.nix
];
}

View file

@ -0,0 +1,64 @@
{ pkgs, home-manager, ... }:
{
stylix = {
enable = true;
autoEnable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/pasque.yaml";
image = pkgs.fetchurl {
url = "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/c2579787-085f-4ca1-92b2-21ea30bc8a21/de78wz6-8306dd9f-52f7-4ea1-8c44-afdf53a3fab5.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9Mjg4MCIsInBhdGgiOiJcL2ZcL2MyNTc5Nzg3LTA4NWYtNGNhMS05MmIyLTIxZWEzMGJjOGEyMVwvZGU3OHd6Ni04MzA2ZGQ5Zi01MmY3LTRlYTEtOGM0NC1hZmRmNTNhM2ZhYjUucG5nIiwid2lkdGgiOiI8PTUxMjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.Nh_iG49Aegxosqjkhskhc0igs-YFwzZk3S1ohu24vAQ";
sha256 = "LaIzLCW86sbldE9lk7psbYKaTCjwaPLcoD3il6FalTw=";
};
override = {
base0D = "F3196E";
};
cursor = {
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
size = 18;
};
fonts = {
# packages = [ pkgs.nerdfonts ];
# emoji = {
# package = pkgs.;
# name = "";
# };
monospace = {
package = pkgs.nerdfonts;
name = "HackNerdFontMono-Regular";
};
# sansSerif = {
# package = pkgs.;
# name = "";
# };
# serif = {
# package = pkgs.;
# name = "";
# };
};
opacity = {
applications = 0.9;
desktop = 0.9;
popups = 0.9;
terminal = 0.9;
};
polarity = "dark";
};
home-manager.users.willifan = {
stylix = {
enable = true;
autoEnable = true;
};
};
}