løjasdfkasd
This commit is contained in:
parent
8eb22816d6
commit
a2a91ec43c
|
@ -40,7 +40,7 @@
|
|||
#nheko
|
||||
#fluffychat
|
||||
|
||||
(pkgs.zxtune or null)
|
||||
(pkgs.zxtune or unstable.zxtune or null)
|
||||
|
||||
f3d
|
||||
firefox
|
||||
|
|
|
@ -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)
|
||||
];
|
||||
]);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue