base/home: Various improvements
zsh: nd-alias alacritty: fix borders base: add some default apps (file, zip, htop, etc.)
This commit is contained in:
parent
585dc252cc
commit
4c9ae7b556
7
base.nix
7
base.nix
|
@ -42,16 +42,23 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
bat
|
bat
|
||||||
bottom
|
bottom
|
||||||
|
duf
|
||||||
eza
|
eza
|
||||||
|
file
|
||||||
git
|
git
|
||||||
gnugrep
|
gnugrep
|
||||||
gnutar
|
gnutar
|
||||||
|
htop
|
||||||
|
neofetch
|
||||||
|
nix-output-monitor
|
||||||
|
p7zip
|
||||||
python3
|
python3
|
||||||
ripgrep
|
ripgrep
|
||||||
rsync
|
rsync
|
||||||
screen
|
screen
|
||||||
unzip
|
unzip
|
||||||
wget
|
wget
|
||||||
|
zip
|
||||||
];
|
];
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
|
|
|
@ -9,10 +9,12 @@
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
padding = {
|
padding = {
|
||||||
x = 4;
|
x = 8;
|
||||||
y = 4;
|
y = 2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dynamic_padding = true;
|
||||||
|
|
||||||
decorations = "none"; # full/none/transparent/buttonless
|
decorations = "none"; # full/none/transparent/buttonless
|
||||||
|
|
||||||
# Transparency:
|
# Transparency:
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
s = "nix-shell --run zsh";
|
s = "nix-shell --run zsh";
|
||||||
sp = "nix-shell --run zsh -p";
|
sp = "nix-shell --run zsh -p";
|
||||||
spu = "nix-shell -I nixpkgs=channel:nixos-unstable --run zsh -p";
|
spu = "nix-shell -I nixpkgs=channel:nixos-unstable --run zsh -p";
|
||||||
|
nd = "nix develop --command zsh";
|
||||||
em = "emacsclient -c";
|
em = "emacsclient -c";
|
||||||
emnw = "emacsclient -nw";
|
emnw = "emacsclient -nw";
|
||||||
gst = "git status -sb";
|
gst = "git status -sb";
|
||||||
|
|
Loading…
Reference in New Issue