-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
30 lines (25 loc) · 833 Bytes
/
flake.nix
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
28
29
30
{
inputs = {
aquaris.url = "github:42loco42/aquaris";
aquaris.inputs.home-manager.follows = "home-manager";
aquaris.inputs.nixpkgs.follows = "nixpkgs";
aquaris.inputs.obscura.follows = "obscura";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
obscura.url = "github:42loco42/obscura";
};
outputs = { aquaris, self, ... }: aquaris self {
users = {
alice = {
sshKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDdkJo7RMoxUkuQ55YT1q5KANHrR+OJZzeYejpJW4rty"
];
git = {
email = "[email protected]";
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDdkJo7RMoxUkuQ55YT1q5KANHrR+OJZzeYejpJW4rty";
};
};
};
};
}