initial setup
This commit is contained in:
12
home/base/git/default.nix
Normal file
12
home/base/git/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ ... }:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Mohamed C.";
|
||||
userEmail = "mohamed@chrayed.de";
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
core.editor = "nano";
|
||||
};
|
||||
};
|
||||
}
|
4
home/base/homeversion/default.nix
Normal file
4
home/base/homeversion/default.nix
Normal file
@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
home.stateVersion = "25.05";
|
||||
}
|
4
home/base/shell/default.nix
Normal file
4
home/base/shell/default.nix
Normal file
@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
home.file.".zshrc".source = ./dotfiles/zsh-config;
|
||||
}
|
0
home/base/shell/dotfiles/zsh-config
Normal file
0
home/base/shell/dotfiles/zsh-config
Normal file
4
home/base/ssh/default.nix
Normal file
4
home/base/ssh/default.nix
Normal file
@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
home.file."./.ssh/config".source = ./dotfiles/ssh-identityfile;
|
||||
}
|
3
home/base/ssh/dotfiles/ssh-identityfile
Normal file
3
home/base/ssh/dotfiles/ssh-identityfile
Normal file
@ -0,0 +1,3 @@
|
||||
IdentityFile ~/.ssh/extern
|
||||
IdentityFile ~/.ssh/intern
|
||||
IdentityFile ~/.ssh/arbeit
|
Reference in New Issue
Block a user