Compare commits
No commits in common. "ca7f3fb9737bde17e3ffd13bc55a375d332593f2" and "e3ca9748512492cf49477000d5837cc022d207c9" have entirely different histories.
ca7f3fb973
...
e3ca974851
|
@ -14,7 +14,7 @@ in
|
||||||
{
|
{
|
||||||
options.plusultra.nix = with types; {
|
options.plusultra.nix = with types; {
|
||||||
enable = mkBoolOpt false "Whether or not to manage nix configuration.";
|
enable = mkBoolOpt false "Whether or not to manage nix configuration.";
|
||||||
package = mkOpt package pkgs.nix "Which nix package to use.";
|
package = mkOpt package pkgs.nixUnstable "Which nix package to use.";
|
||||||
|
|
||||||
default-substituter = {
|
default-substituter = {
|
||||||
url = mkOpt str "https://cache.nixos.org" "The url for the substituter.";
|
url = mkOpt str "https://cache.nixos.org" "The url for the substituter.";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{ pkgs, lib, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
with lib.plusultra;
|
with lib.plusultra;
|
||||||
{
|
{
|
||||||
|
@ -24,11 +24,13 @@ with lib.plusultra;
|
||||||
};
|
};
|
||||||
|
|
||||||
sops.secrets.pccs = {
|
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.
|
networking.wireless.enable = false; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
plusultra.gui.enable = false;
|
plusultra.gui.enable = false;
|
||||||
plusultra.nix.enable = true;
|
plusultra.nix.enable = true;
|
||||||
plusultra.nix.extra-substituters = {
|
plusultra.nix.extra-substituters = {
|
||||||
|
|
Loading…
Reference in a new issue