mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
20 lines
341 B
Nix
Executable file
20 lines
341 B
Nix
Executable file
{ user3 }:
|
|
let
|
|
inherit
|
|
user3
|
|
;
|
|
in
|
|
{
|
|
name = "Streaming";
|
|
aliases = {
|
|
};
|
|
email = {
|
|
address0 = "nick@upRootNutrition.com";
|
|
};
|
|
paths = {
|
|
path0 = "/home/${user3}/Files/Projects"; # Git path
|
|
};
|
|
sshKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBF9TmImDoYDpsW5VMFbOcuK3aH4TWRtx/xGxT3yUtEN nick@desktop"
|
|
];
|
|
}
|