nixos-config/configs/home-manager/plover/default.nix
Gabriel Arazas 0760acb676
configs: consolidate NixOS and home-manager config into one configs folder
Now we're going beyond these structuring as we might have to accomodate
non-system configurations like Nixvim.
2024-01-15 07:45:43 +08:00

51 lines
882 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
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;
coreutils-replacement.enable = true;
servers.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";
}