Compare commits

..

2 commits

Author SHA1 Message Date
Harald Hoyer ca7f3fb973 sgx: fix secrets path
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-03-06 13:07:13 +01:00
Harald Hoyer 0b5e66f4ea use stable nix
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-03-06 13:06:59 +01:00
2 changed files with 3 additions and 5 deletions

View file

@ -14,7 +14,7 @@ in
{
options.plusultra.nix = with types; {
enable = mkBoolOpt false "Whether or not to manage nix configuration.";
package = mkOpt package pkgs.nixUnstable "Which nix package to use.";
package = mkOpt package pkgs.nix "Which nix package to use.";
default-substituter = {
url = mkOpt str "https://cache.nixos.org" "The url for the substituter.";

View file

@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ pkgs, lib, config, ... }:
with lib;
with lib.plusultra;
{
@ -24,13 +24,11 @@ with lib.plusultra;
};
sops.secrets.pccs = {
sopsFile = ../.secrets/sgx/pccs.yaml; # bring your own password file
sopsFile = ../../../.secrets/sgx/pccs.yaml; # bring your own password file
};
networking.wireless.enable = false; # Enables wireless support via wpa_supplicant.
plusultra.gui.enable = false;
plusultra.nix.enable = true;
plusultra.nix.extra-substituters = {