stylix: kill with hammers (its just kinda useless now and more annoying than anything) (also extra flake input)

This commit is contained in:
wo2wz 2025-10-18 11:32:46 -04:00
parent defaf9fbc0
commit 2e6cf2c456
6 changed files with 70 additions and 369 deletions

View file

@ -3,9 +3,9 @@
{
imports = [
./desktop.nix
./fonts.nix
./home-manager.nix
./scx.nix
./stylix.nix
./swap.nix
./yubikey.nix
];

View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
fonts = {
packages = [ pkgs.nerd-fonts.hack ];
fontconfig.defaultFonts.monospace = [ "Hack Nerd Font" ];
};
}

View file

@ -1,44 +0,0 @@
{ inputs, config, pkgs, ... }:
{
imports = [ inputs.stylix.nixosModules.stylix ];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
targets = {
fontconfig.enable = false;
font-packages.enable = false;
};
fonts = {
sizes = {
applications = 12;
desktop = 10;
popups = 10;
terminal = 12;
};
monospace = {
package = pkgs.nerd-fonts.hack;
name = "Hack Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
};
};
home-manager.users.wo2w.stylix = {
enable = true;
targets = {
btop.enable = false;
spicetify.enable = false;
vesktop.enable = false;
vscode.enable = false;
fontconfig.enable = false;
font-packages.enable = false;
librewolf.profileNames = [ "wo2w" ];
};
};
}