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

32 lines
521 B
Nix
Raw Permalink 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" ];
historyIgnore = [
"cd"
"exit"
"lf"
"ls"
"nvim"
];
};
2024-01-06 11:09:00 +00:00
home.stateVersion = "23.11";
2024-01-04 12:06:35 +00:00
}