mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: stylix?
This commit is contained in:
parent
2b1fd9b99e
commit
d6d4d38dcc
33 changed files with 465 additions and 629 deletions
33
nixos/common/stylix.nix
Normal file
33
nixos/common/stylix.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ pkgs, ... }: {
|
||||
stylix = {
|
||||
enable = true;
|
||||
targets = {
|
||||
grub.useWallpaper = false;
|
||||
};
|
||||
homeManagerIntegration = {
|
||||
followSystem = true;
|
||||
autoImport = false;
|
||||
};
|
||||
cursor = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 32;
|
||||
};
|
||||
fonts = {
|
||||
sansSerif = {
|
||||
name = "Jost";
|
||||
package = pkgs.jost;
|
||||
};
|
||||
serif = {
|
||||
name = "Libre Baskerville";
|
||||
package = pkgs.libre-baskerville;
|
||||
};
|
||||
monospace = {
|
||||
name = "Monaspace Krypton";
|
||||
package = pkgs.monaspace;
|
||||
};
|
||||
};
|
||||
autoEnable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue