NixOS + home-manager configs, mirrored from GitLab SaaS.
gitlab.com/andreijiroh-dev/nixops-config
nix-flake
nixos
home-manager
nixpkgs
nix-flakes
1# This is my agenix setup for all things SecretOps on my NixOS and home-manager
2# configurations. This may be unused due to usage of agenix-rekey.
3{ lib, pkgs, config, ... }:
4
5let
6 pubkeys = import ../shared/ssh-keys.nix;
7
8 # start with the host keys
9 hosts = pubkeys.hosts;
10
11 # the you do you part
12 main = pubkeys.personal.y2022;
13 work = pubkeys.work.recaptime-dev.crew;
14 hardwareKeys = pubkeys.fido2Keys;
15in
16{
17
18}