my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
248B

  1. { agenix, ... }: {
  2. nixpkgs = {
  3. overlays = [ agenix.overlay ];
  4. };
  5. age = {
  6. secrets = {
  7. secret1.file = ./secret1.age;
  8. };
  9. # sshKeyPaths = [ "../keys/id_ed25519" ];
  10. sshKeyPaths = [ "/home/thorn/.ssh/id_ed25519" ];
  11. };
  12. }