mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
9b7cc8a850
We now have a "proper" profiles modules ala-nixpkgs so we'll have to move these to make it less confusing.
32 lines
521 B
Nix
32 lines
521 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";
|
|
}
|