feat: implement external rekeying via nix run ".#rekey"

This commit is contained in:
oddlama 2023-01-28 20:11:07 +01:00
parent 9d1253c03b
commit 2081ce6585
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
8 changed files with 105 additions and 77 deletions

View file

@ -55,7 +55,7 @@
homeConfigurations = import ./nix/home-manager.nix inputs;
nixosConfigurations = import ./nix/nixos.nix inputs;
}
// flake-utils.lib.eachSystem ["aarch64-linux" "x86_64-linux"] (localSystem: {
// flake-utils.lib.eachSystem ["aarch64-linux" "x86_64-linux"] (localSystem: rec {
checks = import ./nix/checks.nix inputs localSystem;
devShells.default = import ./nix/dev-shell.nix inputs localSystem;
@ -75,5 +75,7 @@
];
config.allowUnfree = true;
};
apps = {} // import ./apps/rekey.nix inputs localSystem;
});
}