-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.nix
More file actions
27 lines (25 loc) · 807 Bytes
/
user.nix
File metadata and controls
27 lines (25 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# user.nix -- Your personal configuration
# Generated by bootstrap wizard. Edit freely, then run: git add -f user.nix
#
# This file is gitignored to keep personal data out of the shared repo.
# It is staged with `git add -f` so Nix flakes can see it.
{
# Required
username = "arash";
fullName = "Arash Haghighat";
email = "arash@a12t.co";
# Git signing
git = {
signing = {
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOi05F3OPxt5srdeg1gzC5JkaLE3VGTBp/PabVWwja75";
signByDefault = true;
format = "ssh";
signer = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign";
};
allowedSigners = "arash@a12t.co ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOi05F3OPxt5srdeg1gzC5JkaLE3VGTBp/PabVWwja75";
};
# Feature toggles
features = {
onePassword = true;
};
}