blob: 3f6c089af8cd17508375bb766687a64016830d9d (
plain)
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
31
32
|
{ config, lib, pkgs, inputs, ... }:
{
users.users = {
root.hashedPasswordFile = "/secrets/passwords/root";
"c" = {
isNormalUser = true;
hashedPasswordFile = "/secrets/passwords/c";
extraGroups = [ "wheel" "minecraft" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re" # c-pc
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICGftQ5W8QMIVhgDijreliiMgIqwQvxwTkpMftJdQWu+ caroline@larimo.re" # phoenix
];
};
};
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
services = {
pcscd.enable = true;
};
environment.systemPackages = with pkgs; [
ffmpeg
];
}
|