mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 19:59:03 -05:00
13 lines
238 B
Nix
13 lines
238 B
Nix
|
{ pkgs, inputs, config, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
inputs.sops-nix.nixosModules.sops
|
||
|
];
|
||
|
|
||
|
sops = {
|
||
|
defaultSopsFile = ./secrets.yaml;
|
||
|
defaultSopsFormat = "yaml";
|
||
|
age.keyFile = "/home/pingu/.config/sops/age/keys.txt";
|
||
|
};
|
||
|
}
|