nixos-config/home-manager/stvnliu/stylix.nix
Zhongheng Liu 5515d4a9cd
feat: introduced new home-manager features
Changed wallpaper to better fit the style of the WM
- affected common variables
- affected hyprland configuration
- affected stylix configuration
- included additional flake inputs
Added Spicetify packages (not working)
Added obs-studio home-manager program option
Added vimkey navigation keybinds for Hyprland
2024-08-25 18:40:18 +08:00

17 lines
423 B
Nix

{pkgs, ...}: {
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-medium.yaml";
image = ./assets/nixos-wallpaper.jpg;
fonts = {
sansSerif = {
name = "Aileron";
package = pkgs.aileron;
};
monospace = {
name = "BlexMono Nerd Font";
package = pkgs.nerdfonts.override {fonts = ["IBMPlexMono"];};
};
};
};
}