nixos-config/configs/home-manager/alice/default.nix

26 lines
487 B
Nix
Raw Normal View History

2024-01-04 12:06:35 +00:00
{ config, lib, pkgs, ... }:
{
suites = {
2024-01-04 12:06:35 +00:00
dev = {
enable = true;
shell.enable = true;
};
editors.neovim.enable = true;
};
home.sessionVariables = {
MANPAGER = "nvim +Man!";
EDITOR = "nvim";
};
# My user shell of choice because I'm not a hipster.
programs.bash = {
enable = true;
historyControl = [ "erasedups" "ignoredups" "ignorespace" ];
2025-01-29 04:48:19 +00:00
historyIgnore = [ "cd" "exit" "lf" "ls" "nvim" ];
2024-01-04 12:06:35 +00:00
};
2024-01-06 11:09:00 +00:00
home.stateVersion = "23.11";
2024-01-04 12:06:35 +00:00
}