DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: c7117b1caf9dd72ff8b54b6c0e168d335475f541 nix-arta/modules/nixos/core.nix -rw-r--r-- 308 bytes
c7117b1cJonni Liljamo feat: ssh-agent 5 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
{
  flake.modules.nixos.core = {lib, ...}: {
    i18n.defaultLocale = "en_US.UTF-8";

    # Anti-lockout.
    services.openssh.enable = true;
    users.users.root.openssh.authorizedKeys.keys = [lib.arta.liljamoPubKey];

    security.pki.certificates = [(builtins.readFile ../../files/certs/lab.pem)];
  };
}