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
17 lines
423 B
Nix
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"];};
|
|
};
|
|
};
|
|
};
|
|
}
|