21 lines
312 B
Nix
21 lines
312 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
sops-nix = builtins.fetchTarball {
|
|
url = "https://github.com/Mic92/sops-nix/archive/master.tar.gz";
|
|
};
|
|
in
|
|
|
|
{
|
|
imports = [
|
|
"${sops-nix}/modules/sops"
|
|
# your other imports
|
|
];
|
|
|
|
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
|
|
|
|
|
|
|
|
|
|
};
|
|
}
|