edwtjo / nixos-black-theme

A simple black NixOS SLiM & Tiny theme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NixOS Black SLiM and Tiny Theme

preview

Usage

Put the following snippets in your configuration.nix.

SLiM

  services.xserver.displayManager.slim = {
    enable = true;
    theme = pkgs.fetchurl {
      url = "https://github.com/edwtjo/nixos-black-theme/archive/v1.0.tar.gz";
      sha256 = "13bm7k3p6k7yq47nba08bn48cfv536k4ipnwwp1q1l2ydlp85r9d";
    };
  };

LightDM Tiny

  services.xserver.displayManager.lightdm = {
    enable = true;
    greeter.tiny = {
      enable = true;
      extraConfig = let
        black = import (builtins.fetchTarball {
            url = "https://github.com/edwtjo/nixos-black-theme/archive/v1.1.1.tar.gz";
            sha256 = "16qmz1c22arn614zfrfn9a6y7k091227ghvnm97xn8nvgd11hlhz";
        });
      in
        black.lightdm-tiny;
      };
  };

About

A simple black NixOS SLiM & Tiny theme

License:Other


Languages

Language:Nix 50.2%Language:C 49.8%