Major rework
parent
a24728d884
commit
ba64b8a0b9
@ -1,7 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config.programs.bash.initExtra = ''
|
||||
eval "$(direnv hook bash)"
|
||||
config.programs.zsh.initExtra = ''
|
||||
eval "$(direnv hook zsh)"
|
||||
'';
|
||||
}
|
||||
|
@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.mpd = {
|
||||
enable = true;
|
||||
network.startWhenNeeded = true;
|
||||
};
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
{ pkgs
|
||||
, lib
|
||||
, stdenv
|
||||
}: stdenv.mkDerivation rec {
|
||||
pname = "areon-pro";
|
||||
version = "1.0.0";
|
||||
|
||||
src = ./fonts;
|
||||
|
||||
outputs = [ "out" ];
|
||||
phases = [ "installPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/truetype/
|
||||
cp ${src}/* $out/share/fonts/truetype/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Areon Pro Font";
|
||||
homepage = "https://morisawafonts.com/fonts/621/";
|
||||
license = {
|
||||
fullName = "Unkown";
|
||||
url = "https://morisawafonts.com/fonts/621/";
|
||||
free = false;
|
||||
};
|
||||
maintainers = with maintainers; [ nyxkrage ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue