mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 22:53:56 -05:00
Aly Raffauf
d37b54fe97
Some checks failed
git-mirror / gitlab-sync (push) Has been cancelled
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
51 lines
1,018 B
Nix
51 lines
1,018 B
Nix
{
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-light-hard.yaml";
|
|
image = "${self.inputs.wallpapers}/wallhaven-3lyrvy.png";
|
|
imageScalingMode = "fill";
|
|
polarity = "light";
|
|
|
|
cursor = {
|
|
name = "Bibata-Modern-Classic";
|
|
package = pkgs.bibata-cursors;
|
|
size = 24;
|
|
};
|
|
|
|
fonts = {
|
|
monospace = {
|
|
name = "CaskaydiaCove Nerd Font";
|
|
package = pkgs.nerdfonts.override {fonts = ["CascadiaCode"];};
|
|
};
|
|
|
|
sansSerif = {
|
|
name = "UbuntuSans Nerd Font";
|
|
package = pkgs.nerdfonts.override {fonts = ["UbuntuSans"];};
|
|
};
|
|
|
|
serif = {
|
|
name = "Source Serif Pro";
|
|
package = pkgs.source-serif-pro;
|
|
};
|
|
|
|
sizes = {
|
|
applications = 12;
|
|
desktop = 11;
|
|
popups = 12;
|
|
terminal = 13;
|
|
};
|
|
};
|
|
|
|
opacity = {
|
|
applications = 1.0;
|
|
desktop = 0.8;
|
|
terminal = 0.8;
|
|
popups = 0.8;
|
|
};
|
|
};
|
|
}
|