Develop edison, standardize home-manager

This commit is contained in:
2023-09-15 00:21:07 +02:00
committed by Felix Albrigtsen
parent a0693ca9fc
commit acc446dfa3
11 changed files with 92 additions and 191 deletions

36
home/base.nix Normal file
View File

@@ -0,0 +1,36 @@
{ pkgs, ... }:
{
imports = [
./neovim.nix
./zsh.nix
];
programs.nix-index = {
enable = true;
enableZshIntegration = true;
};
programs.git = {
enable = true;
extraConfig = {
pull.rebase = true;
push.autoSetupRemote = true;
color.ui = "auto";
init.defaultBranch = "main";
lfs.enable = true;
user = {
name = "Felix Albrigtsen";
email = "felix@albrigtsen.it";
};
};
ignores = [
"*~"
"*.swp"
".DS_Store"
".vscode"
];
};
}