[fix] *.nix: statix checks

This commit is contained in:
Jalil David Salamé Messina 2024-05-17 18:50:01 +02:00
parent 15a60141ad
commit c19ceb54b7
Signed by: jalil
GPG key ID: F016B9E770737A0B
18 changed files with 728 additions and 626 deletions

View file

@ -13,32 +13,36 @@ in {
image = cfg.wallpaper;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
polarity = "dark";
fonts.monospace = [
{
name = "JetBrains Mono";
package = pkgs.jetbrains-mono;
}
fallbackSymbols
];
fonts.sansSerif = [
{
name = "Noto Sans";
package = pkgs.noto-fonts;
}
fallbackSymbols
];
fonts.serif = [
{
name = "Noto Serif";
package = pkgs.noto-fonts;
}
fallbackSymbols
];
fonts.emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
fonts = {
monospace = [
{
name = "JetBrains Mono";
package = pkgs.jetbrains-mono;
}
fallbackSymbols
];
sansSerif = [
{
name = "Noto Sans";
package = pkgs.noto-fonts;
}
fallbackSymbols
];
serif = [
{
name = "Noto Serif";
package = pkgs.noto-fonts;
}
fallbackSymbols
];
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
sizes.popups = 12;
};
targets.plymouth = {
logoAnimated = false;
logo = cfg.bootLogo;
};
fonts.sizes.popups = 12;
targets.plymouth.logoAnimated = false;
targets.plymouth.logo = cfg.bootLogo;
}