diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-02 05:04:26 +0000 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-02 05:04:26 +0000 |
commit | 44cf7be2d93ab270b08196d5153a6eda0032a1ee (patch) | |
tree | fc8382ac93c76fa91d59b289cc9de8b11e0a5ceb /modules/users | |
parent | Enable spice and qemu guest additions (diff) | |
download | Rory-Open-Architecture-44cf7be2d93ab270b08196d5153a6eda0032a1ee.tar.xz |
Add home manager
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'modules/users')
-rw-r--r-- | modules/users/Rory.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/users/Rory.nix b/modules/users/Rory.nix index 1ee825c..fb04ef8 100644 --- a/modules/users/Rory.nix +++ b/modules/users/Rory.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, home-manager, ... }: { @@ -15,5 +15,13 @@ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN/kNkY/E5b6rvCQLMaSbpLQ/xoyywIwVVu9uo2j/B6p Rory@RoryNix" ]; }; + + home-manager.users.Rory = { + programs.git = { + enable = true; + userName = "TheArcaneBrony"; + userEmail = "myrainbowdash949@gmail.com"; + }; + }; } |