No description
Find a file
Daniel Thwaites 33c6f68e33
Only set fonts.default_family in Qutebrowser
This allows Qutebrowser to decide its own font sizes.
2020-12-22 12:17:00 +00:00
modules Only set fonts.default_family in Qutebrowser 2020-12-22 12:17:00 +00:00
stylix Create baseXX-hash attribute 2020-12-21 14:48:23 +00:00
default.nix Add Plymouth module 2020-12-21 15:10:12 +00:00
flake.nix Inital commit 2020-12-20 19:10:14 +00:00
LICENSE Add MIT license 2020-12-21 13:58:20 +00:00
README.md Create README.md 2020-12-21 15:56:40 +00:00

Stylix

System-wide colorscheming and typography for NixOS, built upon ideas from Base16.

Installation

Import default.nix into your system configuration:

{ pkgs, ... }:

let stylix = pkgs.fetchFromGitHub {
  owner = "danth";
  repo = "stylix";
  rev = "...";
  sha256 = "...";
};

in {
  imports = [ "${stylix}/default.nix" ];
}

Home Manager

Stylix relies on Home Manager to install a lot of its theming. This requires Home Manager to be installed as a NixOS module, if you do not already have that set up you will need to follow these instructions.

Nix Flakes

Stylix can also be installed using the experimental flakes feature:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    stylix.url = "github:danth/stylix";
  };

  outputs = { self, nixpkgs, stylix }: {
    nixosConfigurations."<hostname>" = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [ stylix.nixosModules.stylix ];
    };
  };
}

Configuration

{ pkgs, ... }:

{
  # A colorscheme will be chosen automatically based on your wallpaper
  stylix.image = ./wallpaper.png;

  # Select your preferred fonts, or use these defaults:
  stylix.fonts = {
    serif = {
      package = pkgs.dejavu_fonts;
      name = "DejaVu Serif";
    };
    sansSerif = {
      package = pkgs.dejavu_fonts;
      name = "DejaVu Sans";
    };
    monospace = {
      package = pkgs.dejavu_fonts;
      name = "DejaVu Sans Mono";
    };
    emoji = {
      package = pkgs.noto-fonts-emoji;
      name = "Noto Color Emoji";
    };
  };

  # Add users to this list to enable Home Manager integration
  stylix.homeManagerUsers = [ "danth" ];
}