mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 18:18:59 +00:00
26 lines
487 B
Nix
26 lines
487 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
suites = {
|
|
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" ];
|
|
};
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|