WIP custom vital + zsh and audio configs

Signed-off-by: Filippo Berto <berto.f@protonmail.com>
This commit is contained in:
Filippo Berto 2022-08-25 09:33:52 +02:00
parent 84ed0d7a01
commit 4d42bdad1c
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
8 changed files with 68 additions and 26 deletions

View file

@ -4,10 +4,11 @@
let
self = with pkgs; {
lockscreen = callPackage ./lockscreen { };
update-background = callPackage ./update-background { };
sddm-theme-clairvoyance = callPackage ./sddm-theme-clairvoyance { };
cocktail-bar-cli = callPackage ./cocktail-bar-cli { };
lockscreen = callPackage ./lockscreen { };
sddm-theme-clairvoyance = callPackage ./sddm-theme-clairvoyance { };
update-background = callPackage ./update-background { };
vital-synth = callPackage ./vital-synth { };
};
in
(self)

View file

@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitHub, fira-mono }:
stdenv.mkDerivation rec {
pname = "vital";
version = "20190530";
src = fetchFromGitHub {
owner = "mtytel";
repo = pname;
rev = "636ca0e";
sha256 = "sha25ww6-AcVQpG62PkMtAudqyu/iwZ4N6a2bCdfumCmdqE1E548=";
};
buildInputs = [ fira-mono ];
installPhase = ''
mkdir -p $out/usr/share/sddm/themes/
cp -a . $out/usr/share/sddm/themes/clairvoyance
'';
meta = with lib; {
description = "Clairvoyance theme for SDDM";
homepage = "https://github.com/eayus/sddm-theme-clairvoyance";
license = licenses.gpl3Plus;
maintainers = [ maintainers.bertof ];
platforms = platforms.all;
};
}