mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
54 lines
869 B
Nix
54 lines
869 B
Nix
# It's a user that often dwells in the terminal. Mostly used in servers.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
glances
|
|
wireshark-cli
|
|
bind.dnsutils
|
|
inetutils
|
|
iputils
|
|
bat
|
|
fd
|
|
jq
|
|
];
|
|
|
|
# My user shell of choice because I'm not a hipster.
|
|
programs.bash = {
|
|
enable = true;
|
|
historyControl = [ "erasedups" "ignoredups" "ignorespace" ];
|
|
historyIgnore = [
|
|
"cd"
|
|
"exit"
|
|
"lf"
|
|
"ls"
|
|
"nvim"
|
|
];
|
|
};
|
|
|
|
profiles = {
|
|
dev = {
|
|
enable = true;
|
|
shell.enable = true;
|
|
};
|
|
|
|
editors.neovim.enable = true;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
MANPAGER = "nvim +Man!";
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
services.bleachbit = {
|
|
enable = true;
|
|
cleaners = [
|
|
"bash.history"
|
|
"vim.history"
|
|
];
|
|
startAt = "weekly";
|
|
};
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|