Configure git
This commit is contained in:
@@ -3,11 +3,42 @@
|
||||
let
|
||||
in
|
||||
{
|
||||
imports =
|
||||
[
|
||||
<home-manager/nixos>
|
||||
./desktop-environment/config.nix
|
||||
./terminal-environment/config.nix
|
||||
./system-environment/config.nix
|
||||
users.users.nichkara = {
|
||||
isNormalUser = true;
|
||||
description = "Nina Chloé Kassandra";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"];
|
||||
packages = with pkgs; [];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
|
||||
home-manager.users.nichkara = { pkgs, ... }: {
|
||||
home.stateVersion = "25.11";
|
||||
programs.git = {
|
||||
enable = true;
|
||||
settings = {
|
||||
user = {
|
||||
name = "Nina Chloé Kassandra Reiß";
|
||||
email = "nina.reiss@nickr.eu";
|
||||
};
|
||||
push = {
|
||||
autoSetupRemote = true;
|
||||
};
|
||||
gpg = {
|
||||
format = "ssh";
|
||||
};
|
||||
};
|
||||
signing = {
|
||||
signByDefault = true;
|
||||
key = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
imports = [
|
||||
<home-manager/nixos>
|
||||
./desktop-environment/config.nix
|
||||
./terminal-environment/config.nix
|
||||
./system-environment/config.nix
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user