mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
refactor git
This commit is contained in:
parent
6f579255fd
commit
67f39294de
17
yodaTab/git.home.nix
Normal file
17
yodaTab/git.home.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.yoda = {
|
||||
|
||||
# Git config using Home Manager modules
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Daniel Langbein";
|
||||
userEmail = "daniel@systemli.org";
|
||||
aliases = {
|
||||
#st = "status";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
@ -6,6 +6,7 @@ in
|
||||
{
|
||||
imports = [
|
||||
(import "${home-manager}/nixos")
|
||||
./git.home.nix
|
||||
];
|
||||
|
||||
/* Enable home-manager to configure GNOME */
|
||||
@ -20,16 +21,6 @@ in
|
||||
|
||||
#home.username = "yoda";
|
||||
#home.homeDirectory = "/home/yoda";
|
||||
|
||||
# Git config using Home Manager modules
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Daniel Langbein";
|
||||
userEmail = "daniel@systemli.org";
|
||||
aliases = {
|
||||
#st = "status";
|
||||
};
|
||||
};
|
||||
|
||||
#services.gpg-agent = {
|
||||
# enable = true;
|
||||
|
Loading…
Reference in New Issue
Block a user