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 11 lines 309 B view raw
1{ lib, config, options, pkgs, ... }: 2 3{ 4 options.nixops-config.secretOps.agenix = { 5 enable = lib.mkOption { 6 description = "Enable agenix and agenix-reky for this NixOS or home-manager config. Requires `rekey.hostPubkey` to be set."; 7 default = false; 8 type = lib.types.bool; 9 }; 10 }; 11}