mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
Aly Raffauf
fb9adbde52
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-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 / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{pkgs, ...}: {
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
|
|
|
image = let
|
|
wallpapers = builtins.fetchGit {
|
|
url = "https://github.com/alyraffauf/wallpapers.git";
|
|
rev = "ff956327520f2ecdd0f8b1cdab4420bef4095d38";
|
|
ref = "master";
|
|
};
|
|
in "${wallpapers}/wallhaven-mp886k.jpg";
|
|
|
|
imageScalingMode = "fill";
|
|
polarity = "dark";
|
|
|
|
cursor = {
|
|
name = "Bibata-Modern-Classic";
|
|
package = pkgs.bibata-cursors;
|
|
size = 24;
|
|
};
|
|
|
|
fonts = {
|
|
monospace = {
|
|
name = "UbuntuSansMono Nerd Font";
|
|
package = pkgs.nerdfonts.override {fonts = ["UbuntuSans"];};
|
|
};
|
|
|
|
sansSerif = {
|
|
name = "UbuntuSans Nerd Font";
|
|
package = pkgs.nerdfonts.override {fonts = ["UbuntuSans"];};
|
|
};
|
|
|
|
serif = {
|
|
name = "Vegur";
|
|
package = pkgs.vegur;
|
|
};
|
|
|
|
sizes = {
|
|
applications = 12;
|
|
desktop = 11;
|
|
popups = 12;
|
|
terminal = 13;
|
|
};
|
|
};
|
|
|
|
opacity = {
|
|
applications = 1.0;
|
|
desktop = 0.8;
|
|
terminal = 0.8;
|
|
popups = 0.8;
|
|
};
|
|
};
|
|
}
|