split off terminal utilities

This commit is contained in:
2026-04-22 18:45:00 -04:00
parent c3cc94a305
commit 1be21b6c52
7 changed files with 243 additions and 226 deletions

View File

@@ -161,35 +161,21 @@
];
};
# Root-facing admin tools only. User-facing CLI (fish, helix, htop, bottom,
# tmux, ripgrep, lsof, wget, pfetch-rs, …) is provided via home-manager in
# home/profiles/terminal.nix — shared with mreow and yarn.
environment.systemPackages = with pkgs; [
helix
lm_sensors
bottom
htop
neofetch
borgbackup
smartmontools
ripgrep
intel-gpu-tools
iotop
iftop
tmux
wget
powertop
lsof
reflac
pfetch-rs
sbctl
# add `skdump`

View File

@@ -1,31 +1,12 @@
{ ... }:
{
pkgs,
lib,
...
}:
{
imports = [
../../home/profiles/terminal.nix
];
home.stateVersion = "24.11";
programs.fish = {
enable = true;
interactiveShellInit = ''
# disable greeting
set fish_greeting
# pfetch on shell start (disable pkgs because of execution time)
PF_INFO="ascii title os host kernel uptime memory editor wm" ${lib.getExe pkgs.pfetch-rs}
'';
shellAliases =
let
eza = "${lib.getExe pkgs.eza} --color=always --group-directories-first";
in
{
# from DistroTube's dot files: Changing "ls" to "eza"
ls = "${eza} -al";
la = "${eza} -a";
ll = "${eza} -l";
lt = "${eza} -aT";
};
};
# Muffin typically doesn't have the GPG key loaded (no agent forwarded,
# no key in the keyring). Unsigned commits here rather than failing silently.
programs.git.signing.signByDefault = false;
}