mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
feat: SSH CA
This commit is contained in:
parent
a28e1ce6e2
commit
ccf6a6f704
23 changed files with 678 additions and 431 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{ lib, config, inputs, ... }: let
|
||||
# TODO: convert to nix-std
|
||||
inherit (lib.attrsets) mapAttrsToList mapAttrs;
|
||||
inherit (lib.attrsets) mapAttrsToList mapAttrs filterAttrs;
|
||||
inherit (lib.lists) optionals;
|
||||
inherit (lib.options) mkOption;
|
||||
inherit (lib.types) int attrsOf submodule;
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
maxJobs = 100;
|
||||
speedFactor = config.distributed.outputs.${name};
|
||||
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
||||
} ) (inputs.self.nixosConfigurations // inputs.self.darwinConfigurations);
|
||||
} ) (filterAttrs (n: _: n != config.networking.hostName) (inputs.self.nixosConfigurations // inputs.self.darwinConfigurations));
|
||||
daiyousei = {
|
||||
hostName = "daiyousei.inskip.me";
|
||||
sshUser = "root";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue