update update
parent
adc4bef0b8
commit
cc024161bf
|
@ -45,6 +45,7 @@
|
|||
stremio
|
||||
spotify
|
||||
r2modman
|
||||
openspades
|
||||
# Art
|
||||
inkscape
|
||||
gimp
|
||||
|
@ -68,6 +69,7 @@
|
|||
qemu
|
||||
qemu_kvm
|
||||
nixos-generators
|
||||
hexchat
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,6 +4,11 @@
|
|||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font = {
|
||||
normal.family = "Anton";
|
||||
bold.family = "Anton";
|
||||
italic.family = "Anton";
|
||||
};
|
||||
colors = with config.colorScheme.palette; {
|
||||
bright = {
|
||||
black = "0x${base00}";
|
||||
|
|
|
@ -49,6 +49,9 @@ in
|
|||
text = "#${config.colorScheme.palette.base09}";
|
||||
};
|
||||
};
|
||||
fonts = {
|
||||
names = [ "Anton" ];
|
||||
};
|
||||
bars = [
|
||||
{
|
||||
command = "waybar";
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
"clock" = {
|
||||
interval = 1;
|
||||
format = "{:%H:%M:%S}";
|
||||
format = "{:%H:%M:%S} paggles";
|
||||
format-alt = "{ %A, %d %B, %Y}";
|
||||
tooltip-format = "<big>{:%d %B, %Y}</big>\n<tt><small>{calendar}</small></tt>";
|
||||
};
|
||||
|
@ -59,7 +59,7 @@
|
|||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
font-family: monospace;
|
||||
font-family: Anton;
|
||||
}
|
||||
window#waybar {
|
||||
background: #${config.colorScheme.palette.base00};
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
style = ''
|
||||
* {
|
||||
font-family: monospace;
|
||||
font-family: Anton;
|
||||
}
|
||||
|
||||
window {
|
||||
|
|
|
@ -35,6 +35,7 @@ in
|
|||
git
|
||||
lazygit
|
||||
lynx
|
||||
irssi
|
||||
# System
|
||||
gnome.gnome-control-center
|
||||
gnome.nautilus
|
||||
|
@ -46,7 +47,7 @@ in
|
|||
pamixer
|
||||
hyperplane
|
||||
mini-text
|
||||
# Sway nees this
|
||||
# Sway needs this
|
||||
grim
|
||||
slurp
|
||||
swaybg
|
||||
|
@ -69,7 +70,9 @@ in
|
|||
];
|
||||
};
|
||||
# Fonts
|
||||
fonts.packages = [
|
||||
pkgs.ibm-plex
|
||||
fonts.packages = with pkgs; [
|
||||
ibm-plex
|
||||
google-fonts
|
||||
vistafonts
|
||||
];
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
enable = true;
|
||||
support32Bit = true;
|
||||
};
|
||||
wireplumber.enable = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
{ lib, stdenvNoCC, fetchzip }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "impact";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://cloud.hermitcollective.net/s/ZMnTCgLd9NJyZ7W/download/Impact-Font.zip";
|
||||
hash = "sha256-qe0NjS2Vevuzs2YmIAJBwogPwEM4edYZ6Oxkufe+QBc=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 ./*.otf -t $out/share/fonts/opentype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
Loading…
Reference in New Issue