Markus Heurung
8106fbb14d
That was some headbreaker. A path in nix is not a string, quotes are not good. See sops.defaultSopsFile. This was a very important last puzzle piece. Finally.
10 lines
141 B
Nix
10 lines
141 B
Nix
{ inputs, pkgs, ... }: {
|
|
# imports = [
|
|
# inputs.sops.homeManagerModules.sops
|
|
# ];
|
|
|
|
home.packages = with pkgs; [
|
|
sops
|
|
];
|
|
|
|
}
|