nixos-config/users/home-manager/plover/default.nix

32 lines
485 B
Nix
Raw Normal View History

# 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
];
profiles = {
dev = {
enable = true;
shell.enable = true;
};
editors.neovim.enable = true;
};
systemd.user.sessionVariables = {
MANPAGER = "nvim +Man!";
EDITOR = "nvim";
};
home.stateVersion = "22.11";
}