update update
parent
adc4bef0b8
commit
cc024161bf
|
@ -45,6 +45,7 @@
|
||||||
stremio
|
stremio
|
||||||
spotify
|
spotify
|
||||||
r2modman
|
r2modman
|
||||||
|
openspades
|
||||||
# Art
|
# Art
|
||||||
inkscape
|
inkscape
|
||||||
gimp
|
gimp
|
||||||
|
@ -68,6 +69,7 @@
|
||||||
qemu
|
qemu
|
||||||
qemu_kvm
|
qemu_kvm
|
||||||
nixos-generators
|
nixos-generators
|
||||||
|
hexchat
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,11 @@
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
font = {
|
||||||
|
normal.family = "Anton";
|
||||||
|
bold.family = "Anton";
|
||||||
|
italic.family = "Anton";
|
||||||
|
};
|
||||||
colors = with config.colorScheme.palette; {
|
colors = with config.colorScheme.palette; {
|
||||||
bright = {
|
bright = {
|
||||||
black = "0x${base00}";
|
black = "0x${base00}";
|
||||||
|
|
|
@ -49,6 +49,9 @@ in
|
||||||
text = "#${config.colorScheme.palette.base09}";
|
text = "#${config.colorScheme.palette.base09}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
fonts = {
|
||||||
|
names = [ "Anton" ];
|
||||||
|
};
|
||||||
bars = [
|
bars = [
|
||||||
{
|
{
|
||||||
command = "waybar";
|
command = "waybar";
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
"clock" = {
|
"clock" = {
|
||||||
interval = 1;
|
interval = 1;
|
||||||
format = "{:%H:%M:%S}";
|
format = "{:%H:%M:%S} paggles";
|
||||||
format-alt = "{ %A, %d %B, %Y}";
|
format-alt = "{ %A, %d %B, %Y}";
|
||||||
tooltip-format = "<big>{:%d %B, %Y}</big>\n<tt><small>{calendar}</small></tt>";
|
tooltip-format = "<big>{:%d %B, %Y}</big>\n<tt><small>{calendar}</small></tt>";
|
||||||
};
|
};
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
* {
|
* {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
font-family: monospace;
|
font-family: Anton;
|
||||||
}
|
}
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: #${config.colorScheme.palette.base00};
|
background: #${config.colorScheme.palette.base00};
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
style = ''
|
style = ''
|
||||||
* {
|
* {
|
||||||
font-family: monospace;
|
font-family: Anton;
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
window {
|
||||||
|
|
|
@ -35,6 +35,7 @@ in
|
||||||
git
|
git
|
||||||
lazygit
|
lazygit
|
||||||
lynx
|
lynx
|
||||||
|
irssi
|
||||||
# System
|
# System
|
||||||
gnome.gnome-control-center
|
gnome.gnome-control-center
|
||||||
gnome.nautilus
|
gnome.nautilus
|
||||||
|
@ -46,7 +47,7 @@ in
|
||||||
pamixer
|
pamixer
|
||||||
hyperplane
|
hyperplane
|
||||||
mini-text
|
mini-text
|
||||||
# Sway nees this
|
# Sway needs this
|
||||||
grim
|
grim
|
||||||
slurp
|
slurp
|
||||||
swaybg
|
swaybg
|
||||||
|
@ -69,7 +70,9 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# Fonts
|
# Fonts
|
||||||
fonts.packages = [
|
fonts.packages = with pkgs; [
|
||||||
pkgs.ibm-plex
|
ibm-plex
|
||||||
|
google-fonts
|
||||||
|
vistafonts
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
support32Bit = true;
|
support32Bit = true;
|
||||||
};
|
};
|
||||||
|
wireplumber.enable = true;
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
jack.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