dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (295B)


      1 {
      2   lib,
      3   config,
      4   sops-nix,
      5   ...
      6 }:
      7 {
      8   imports = [ sops-nix.nixosModules.sops ];
      9 
     10   config = {
     11     home-manager.sharedModules = [ sops-nix.homeManagerModules.sops ];
     12 
     13     sops = {
     14       age.sshKeyPaths = [ "/fix/etc/ssh/ssh_host_ed25519_key" ];
     15       gnupg.sshKeyPaths = [ ];
     16     };
     17   };
     18 }