mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
Aly Raffauf
a1f17450c3
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
51 lines
1 KiB
Nix
51 lines
1 KiB
Nix
{
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/default-dark.yaml";
|
|
image = "${self.inputs.wallpapers}/Legion_Go_Meteorite_Wallpaper.jpg";
|
|
imageScalingMode = "fill";
|
|
polarity = "dark";
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|