NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 491d2abd3fd4e2964a879f58fdd2ac9f6ea7f957 18 lines 422 B view raw
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}