løjasdfkasd
This commit is contained in:
parent
8eb22816d6
commit
a2a91ec43c
|
@ -40,7 +40,7 @@
|
||||||
#nheko
|
#nheko
|
||||||
#fluffychat
|
#fluffychat
|
||||||
|
|
||||||
(pkgs.zxtune or null)
|
(pkgs.zxtune or unstable.zxtune or null)
|
||||||
|
|
||||||
f3d
|
f3d
|
||||||
firefox
|
firefox
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
# TODO: "bind -s 'set completion-ignore-case on'"
|
# TODO: "bind -s 'set completion-ignore-case on'"
|
||||||
programs.bash.enable = true;
|
programs.bash.enable = true;
|
||||||
|
@ -82,7 +82,7 @@
|
||||||
home.shellAliases.chgrp = "chgrp --preserve-root";
|
home.shellAliases.chgrp = "chgrp --preserve-root";
|
||||||
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = lib.filter (x: x != null) (with pkgs; [
|
||||||
rsync
|
rsync
|
||||||
bind.dnsutils # dig
|
bind.dnsutils # dig
|
||||||
dogdns # dog
|
dogdns # dog
|
||||||
|
@ -106,6 +106,7 @@
|
||||||
fx
|
fx
|
||||||
yq # includes xmlq and tomlq
|
yq # includes xmlq and tomlq
|
||||||
fq # binary jq
|
fq # binary jq
|
||||||
|
(pkgs.jnv or unstable.jnv or null)
|
||||||
htmlq
|
htmlq
|
||||||
just # justfile
|
just # justfile
|
||||||
gum
|
gum
|
||||||
|
@ -115,6 +116,6 @@
|
||||||
ncdu # Disk usage analyzer with an ncurses interface
|
ncdu # Disk usage analyzer with an ncurses interface
|
||||||
xplr # tui file explorer
|
xplr # tui file explorer
|
||||||
aha (pkgs.colorized-logs or unstable.colorized-logs)
|
aha (pkgs.colorized-logs or unstable.colorized-logs)
|
||||||
];
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue