løjasdfkasd

This commit is contained in:
Peder Bergebakken Sundt 2024-03-23 19:33:09 +01:00
parent 8eb22816d6
commit a2a91ec43c
2 changed files with 5 additions and 4 deletions

View File

@ -40,7 +40,7 @@
#nheko
#fluffychat
(pkgs.zxtune or null)
(pkgs.zxtune or unstable.zxtune or null)
f3d
firefox

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
# TODO: "bind -s 'set completion-ignore-case on'"
programs.bash.enable = true;
@ -82,7 +82,7 @@
home.shellAliases.chgrp = "chgrp --preserve-root";
home.packages = with pkgs; [
home.packages = lib.filter (x: x != null) (with pkgs; [
rsync
bind.dnsutils # dig
dogdns # dog
@ -106,6 +106,7 @@
fx
yq # includes xmlq and tomlq
fq # binary jq
(pkgs.jnv or unstable.jnv or null)
htmlq
just # justfile
gum
@ -115,6 +116,6 @@
ncdu # Disk usage analyzer with an ncurses interface
xplr # tui file explorer
aha (pkgs.colorized-logs or unstable.colorized-logs)
];
]);
}