Tweak colorscheme; add fonts
This commit is contained in:
parent
e7355d37d6
commit
28c04556dd
|
@ -2,7 +2,7 @@
|
||||||
colorscheme = name: image: rec {
|
colorscheme = name: image: rec {
|
||||||
generate = pkgs.callPackage ({ runCommand, colorz }:
|
generate = pkgs.callPackage ({ runCommand, colorz }:
|
||||||
runCommand name { nativeBuildInputs = [ colorz ]; } ''
|
runCommand name { nativeBuildInputs = [ colorz ]; } ''
|
||||||
colorz ${image} --no-preview -n 8 --bold 30 --minv 0 --maxv 255 | awk '{print $1} {print $2}' > $out
|
colorz ${image} --no-preview -n 8 --minv 0 --maxv 255 | awk '{print $1} {print $2}' > $out
|
||||||
'') { };
|
'') { };
|
||||||
|
|
||||||
colors = builtins.listToAttrs (lib.lists.imap0 (i: v: {
|
colors = builtins.listToAttrs (lib.lists.imap0 (i: v: {
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
yubioath-desktop
|
yubioath-desktop
|
||||||
clipmenu
|
clipmenu
|
||||||
xdotool
|
xdotool
|
||||||
|
prismlauncher
|
||||||
];
|
];
|
||||||
|
|
||||||
# Brightness/volume keys
|
# Brightness/volume keys
|
||||||
|
@ -146,7 +147,9 @@
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
fonts.fonts = with pkgs; [
|
fonts.fonts = with pkgs; [
|
||||||
|
(nerdfonts.override { fonts = [ "DaddyTimeMono" "NerdFontsSymbolsOnly" ]; })
|
||||||
cantarell-fonts
|
cantarell-fonts
|
||||||
|
cm_unicode
|
||||||
crimson
|
crimson
|
||||||
dejavu_fonts
|
dejavu_fonts
|
||||||
fira-code
|
fira-code
|
||||||
|
@ -156,7 +159,6 @@
|
||||||
noto-fonts-cjk
|
noto-fonts-cjk
|
||||||
siji
|
siji
|
||||||
twitter-color-emoji
|
twitter-color-emoji
|
||||||
(nerdfonts.override { fonts = [ "DaddyTimeMono" "NerdFontsSymbolsOnly" ]; })
|
|
||||||
];
|
];
|
||||||
|
|
||||||
services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue