assertions
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
@@ -10,60 +10,74 @@
|
||||
let
|
||||
inherit (lib.${namespace}) enabled;
|
||||
isArm = ("aarch64-linux" == system) || ("aarch64-darwin" == system);
|
||||
# Non-login / system accounts (root, nixos installer, etc.) should not get
|
||||
# desktop packages, tmux, nh, kdeconnect, nextcloud-client, etc.
|
||||
# Detect them by username so individual host home files are not needed.
|
||||
isSystemUser = lib.elem config.home.username [
|
||||
"root"
|
||||
"nixos"
|
||||
];
|
||||
in
|
||||
{
|
||||
home = {
|
||||
enableNixpkgsReleaseCheck = lib.mkDefault false;
|
||||
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
||||
homeDirectory = lib.mkDefault (
|
||||
if config.home.username == "root" then "/root" else "/home/${config.home.username}"
|
||||
);
|
||||
packages =
|
||||
with pkgs;
|
||||
[
|
||||
age
|
||||
clinfo
|
||||
cpufetch
|
||||
dbus
|
||||
deadnix
|
||||
lm_sensors
|
||||
nano
|
||||
nebula
|
||||
nix-prefetch-scripts
|
||||
nixfmt
|
||||
pciutils
|
||||
protonup-ng
|
||||
rsync
|
||||
smartmontools
|
||||
sops
|
||||
tailscale
|
||||
tree
|
||||
usbutils
|
||||
vim
|
||||
vulkan-tools
|
||||
wget
|
||||
]
|
||||
++ (
|
||||
if hasDestopEnvironment then
|
||||
(
|
||||
if isSystemUser then
|
||||
[ ]
|
||||
else
|
||||
[
|
||||
boxbuddy
|
||||
stable.chromium
|
||||
firefox
|
||||
gamescope
|
||||
gamescope-wsi
|
||||
gparted
|
||||
mission-center
|
||||
parted
|
||||
vesktop
|
||||
age
|
||||
clinfo
|
||||
cpufetch
|
||||
dbus
|
||||
deadnix
|
||||
lm_sensors
|
||||
nano
|
||||
nebula
|
||||
nix-prefetch-scripts
|
||||
nixfmt
|
||||
pciutils
|
||||
protonup-ng
|
||||
rsync
|
||||
smartmontools
|
||||
sops
|
||||
tailscale
|
||||
tree
|
||||
usbutils
|
||||
vim
|
||||
vulkan-tools
|
||||
wget
|
||||
]
|
||||
++ (
|
||||
if !isArm then
|
||||
if (hasDestopEnvironment) then
|
||||
[
|
||||
# goverlay
|
||||
# winboat
|
||||
boxbuddy
|
||||
stable.chromium
|
||||
firefox
|
||||
gamescope
|
||||
gamescope-wsi
|
||||
gparted
|
||||
mission-center
|
||||
parted
|
||||
vesktop
|
||||
]
|
||||
++ (
|
||||
if !isArm then
|
||||
[
|
||||
# goverlay
|
||||
# winboat
|
||||
]
|
||||
else
|
||||
[ ]
|
||||
)
|
||||
else
|
||||
[ ]
|
||||
)
|
||||
else
|
||||
[ ]
|
||||
);
|
||||
|
||||
stateVersion = lib.mkDefault "23.11";
|
||||
@@ -74,21 +88,19 @@ in
|
||||
# standalone homes don't load the nix-index-database HM module).
|
||||
# Set it per-host in homes that explicitly load the module.
|
||||
btop = {
|
||||
enable = lib.mkDefault true;
|
||||
enable = lib.mkDefault (!isSystemUser);
|
||||
package = pkgs.btop;
|
||||
};
|
||||
fastfetch = lib.mkDefault enabled;
|
||||
fastfetch.enable = lib.mkDefault (!isSystemUser);
|
||||
home-manager = lib.mkDefault enabled;
|
||||
java = {
|
||||
enable = lib.mkDefault true;
|
||||
};
|
||||
mangohud.enable = lib.mkDefault hasDestopEnvironment;
|
||||
password-store = enabled;
|
||||
java.enable = lib.mkDefault (!isSystemUser);
|
||||
mangohud.enable = lib.mkDefault (hasDestopEnvironment && !isSystemUser);
|
||||
password-store.enable = lib.mkDefault (!isSystemUser);
|
||||
nh = {
|
||||
enable = true;
|
||||
enable = lib.mkDefault (!isSystemUser);
|
||||
flake = "/etc/nixos";
|
||||
clean = {
|
||||
enable = true;
|
||||
enable = lib.mkDefault (!isSystemUser);
|
||||
extraArgs = "--keep 5";
|
||||
};
|
||||
};
|
||||
@@ -105,7 +117,7 @@ in
|
||||
};
|
||||
|
||||
tmux = {
|
||||
enable = lib.mkDefault true;
|
||||
enable = lib.mkDefault (!isSystemUser);
|
||||
terminal = "screen-256color";
|
||||
sensibleOnTop = true;
|
||||
focusEvents = true;
|
||||
@@ -127,7 +139,7 @@ in
|
||||
tmuxPlugins.better-mouse-mode
|
||||
];
|
||||
extraConfig = ''
|
||||
set -g status-right '#[fg=black,bg=color15] #{cpu_percentage} %H:%M '
|
||||
set -g status-right '#[fg=black,bg=color15] #{cpu_percentage} %H:%M '
|
||||
run-shell ${pkgs.tmuxPlugins.cpu}/share/tmux-plugins/cpu/cpu.tmux
|
||||
set -g default-terminal "xterm-256color"
|
||||
set -ga terminal-overrides ",*256col*:Tc"
|
||||
@@ -145,11 +157,13 @@ in
|
||||
};
|
||||
|
||||
services = {
|
||||
nextcloud-client.enable = false; # lib.mkDefault hasDestopEnvironment;
|
||||
pass-secret-service = lib.mkDefault enabled;
|
||||
# nextcloud-client is disabled by default for all users; systems that
|
||||
# want it enabled must opt in explicitly in their home configuration.
|
||||
nextcloud-client.enable = lib.mkDefault false;
|
||||
pass-secret-service.enable = lib.mkDefault (!isSystemUser);
|
||||
kdeconnect = {
|
||||
enable = lib.mkDefault hasDestopEnvironment;
|
||||
indicator = lib.mkDefault hasDestopEnvironment;
|
||||
enable = lib.mkDefault (hasDestopEnvironment && !isSystemUser);
|
||||
indicator = lib.mkDefault (hasDestopEnvironment && !isSystemUser);
|
||||
package = pkgs.kdePackages.kdeconnect-kde;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -8,12 +8,10 @@
|
||||
}:
|
||||
let
|
||||
isArm = ("aarch64-linux" == system) || ("aarch64-darwin" == system);
|
||||
isDarwin = ("aarch64-darwin" == system);
|
||||
|
||||
x86_only = with pkgs; [
|
||||
vscode-extensions.redhat.vscode-xml
|
||||
];
|
||||
open-remote-ssh = pkgs.${namespace}.open-remote-ssh;
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
@@ -50,27 +48,27 @@ in
|
||||
nix-vscode-extensions.open-vsx.jeanp413.open-remote-ssh
|
||||
]
|
||||
++ (if !isArm then x86_only else [ ]);
|
||||
# ++ (if !isDarwin then [ open-remote-ssh ] else [ ]);
|
||||
# ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
# {
|
||||
# name = "copilot-mcp";
|
||||
# publisher = "automatalabs";
|
||||
# version = "0.0.49";
|
||||
# sha256 = "sha256-+G2OQl5SCN7bh7MzGdYiRclIZefBE7lWnGg1kNpCvnA=";
|
||||
# }
|
||||
# {
|
||||
# name = "mcp-server-runner";
|
||||
# publisher = "zebradev";
|
||||
# version = "0.1.0";
|
||||
# sha256 = "sha256-StydVt3VzQUSS/pYp76jnIwtZlEj8gWAGzOARs93J+E=";
|
||||
# }
|
||||
# {
|
||||
# name = "claude-dev";
|
||||
# publisher = "saoudrizwan";
|
||||
# version = "3.17.9";
|
||||
# sha256 = "sha256-y3bFtMe5vZrO3DFb31KDvkzjD2jM76wK89mKhgJXC70=";
|
||||
# }
|
||||
# ];
|
||||
# ++ (if !isDarwin then [ open-remote-ssh ] else [ ]);
|
||||
# ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
# {
|
||||
# name = "copilot-mcp";
|
||||
# publisher = "automatalabs";
|
||||
# version = "0.0.49";
|
||||
# sha256 = "sha256-+G2OQl5SCN7bh7MzGdYiRclIZefBE7lWnGg1kNpCvnA=";
|
||||
# }
|
||||
# {
|
||||
# name = "mcp-server-runner";
|
||||
# publisher = "zebradev";
|
||||
# version = "0.1.0";
|
||||
# sha256 = "sha256-StydVt3VzQUSS/pYp76jnIwtZlEj8gWAGzOARs93J+E=";
|
||||
# }
|
||||
# {
|
||||
# name = "claude-dev";
|
||||
# publisher = "saoudrizwan";
|
||||
# version = "3.17.9";
|
||||
# sha256 = "sha256-y3bFtMe5vZrO3DFb31KDvkzjD2jM76wK89mKhgJXC70=";
|
||||
# }
|
||||
# ];
|
||||
|
||||
userSettings = {
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
|
||||
@@ -14,12 +14,42 @@
|
||||
programs.wlogout = {
|
||||
enable = false;
|
||||
layout = {
|
||||
lock = { label = "lock"; action = "hyprlock --immediate"; text = "Lock"; keybind = "l"; };
|
||||
hibernate = { label = "hibernate"; action = "systemctl hibernate"; text = "Hibernate"; keybind = "h"; };
|
||||
logout = { label = "logout"; action = "sleep 1; hyprctl dispatch exit"; text = "Logout"; keybind = "e"; };
|
||||
shutdown = { label = "shutdown"; action = "systemctl poweroff"; text = "Shutdown"; keybind = "s"; };
|
||||
suspend = { label = "suspend"; action = "systemctl suspend"; text = "Suspend"; keybind = "u"; };
|
||||
reboot = { label = "reboot"; action = "reboot"; text = "Reboot"; keybind = "r"; };
|
||||
lock = {
|
||||
label = "lock";
|
||||
action = "hyprlock --immediate";
|
||||
text = "Lock";
|
||||
keybind = "l";
|
||||
};
|
||||
hibernate = {
|
||||
label = "hibernate";
|
||||
action = "systemctl hibernate";
|
||||
text = "Hibernate";
|
||||
keybind = "h";
|
||||
};
|
||||
logout = {
|
||||
label = "logout";
|
||||
action = "sleep 1; hyprctl dispatch exit";
|
||||
text = "Logout";
|
||||
keybind = "e";
|
||||
};
|
||||
shutdown = {
|
||||
label = "shutdown";
|
||||
action = "systemctl poweroff";
|
||||
text = "Shutdown";
|
||||
keybind = "s";
|
||||
};
|
||||
suspend = {
|
||||
label = "suspend";
|
||||
action = "systemctl suspend";
|
||||
text = "Suspend";
|
||||
keybind = "u";
|
||||
};
|
||||
reboot = {
|
||||
label = "reboot";
|
||||
action = "reboot";
|
||||
text = "Reboot";
|
||||
keybind = "r";
|
||||
};
|
||||
};
|
||||
style = ''
|
||||
* {
|
||||
|
||||
@@ -22,6 +22,17 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = !cfg.yubikeyEncryption || config.${namespace}.hardware.disko.enableLuks;
|
||||
message = "mjallen.boot.common.yubikeyEncryption requires mjallen.hardware.disko.enableLuks = true.";
|
||||
}
|
||||
{
|
||||
assertion = !cfg.yubikeyEncryption || config.${namespace}.hardware.disko.enable;
|
||||
message = "mjallen.boot.common.yubikeyEncryption requires mjallen.hardware.disko.enable = true (disko-managed disk layout).";
|
||||
}
|
||||
];
|
||||
|
||||
boot = {
|
||||
|
||||
kernelModules = [ "kvm" ];
|
||||
@@ -78,7 +89,7 @@ in
|
||||
};
|
||||
slot = 2;
|
||||
twoFactor = false;
|
||||
gracePeriod = yubikeyGracePeriod;
|
||||
gracePeriod = cfg.yubikeyGracePeriod;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -17,6 +17,13 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.configLimit > 0;
|
||||
message = "mjallen.bootloader.lanzaboote.configLimit must be a positive integer (got ${toString cfg.configLimit}).";
|
||||
}
|
||||
];
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
efi = {
|
||||
|
||||
@@ -104,6 +104,21 @@ in
|
||||
{
|
||||
imports = [ ./options.nix ];
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.rootDisk != "";
|
||||
message = "mjallen.hardware.disko.rootDisk must be set to a non-empty device path (e.g. \"/dev/nvme0n1\").";
|
||||
}
|
||||
{
|
||||
assertion = !(cfg.enableSwap && cfg.swapSize == "");
|
||||
message = "mjallen.hardware.disko.swapSize must be a non-empty size string when enableSwap is true (e.g. \"16G\").";
|
||||
}
|
||||
{
|
||||
assertion = cfg.compression != "";
|
||||
message = "mjallen.hardware.disko.compression must be a non-empty compression type (e.g. \"zstd\").";
|
||||
}
|
||||
];
|
||||
|
||||
disko.devices = lib.mkMerge [
|
||||
{
|
||||
nodev."/" = {
|
||||
|
||||
@@ -7,11 +7,21 @@
|
||||
}:
|
||||
let
|
||||
cfg = config.${namespace}.gaming;
|
||||
hasDesktop =
|
||||
config.${namespace}.desktop.gnome.enable
|
||||
|| config.${namespace}.desktop.hyprland.enable
|
||||
|| config.${namespace}.desktop.cosmic.enable;
|
||||
in
|
||||
{
|
||||
imports = [ ./options.nix ];
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = hasDesktop;
|
||||
message = "mjallen.gaming.enable requires a desktop environment (gnome, hyprland, or cosmic) to be enabled.";
|
||||
}
|
||||
];
|
||||
# Network option required using sysctl to let Ubisoft Connect work as of 7-12-2023
|
||||
# Use mkDefault so jovian-nixos steam module (which sets this to `true`) wins.
|
||||
boot.kernel.sysctl."net.ipv4.tcp_mtu_probing" = lib.mkDefault 1;
|
||||
|
||||
@@ -22,6 +22,17 @@ in
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = !(cfg.lact.enable && cfg.corectrl.enable);
|
||||
message = "mjallen.hardware.amd: lact and corectrl cannot both be enabled — they both manage AMD GPU power profiles and will conflict.";
|
||||
}
|
||||
{
|
||||
assertion = !cfg.corectrl.enablePolkit || cfg.corectrl.polkitGroup != "";
|
||||
message = "mjallen.hardware.amd.corectrl.polkitGroup must be a non-empty group name when enablePolkit is true.";
|
||||
}
|
||||
];
|
||||
|
||||
boot = {
|
||||
kernelModules = [
|
||||
"nct6775"
|
||||
|
||||
@@ -21,6 +21,17 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.battery != "";
|
||||
message = "mjallen.hardware.battery.battery must be set to the sysfs path of the battery charge limit file (e.g. \"/sys/class/power_supply/BAT0/charge_control_end_threshold\").";
|
||||
}
|
||||
{
|
||||
assertion = cfg.chargeLimit > 0 && cfg.chargeLimit <= 100;
|
||||
message = "mjallen.hardware.battery.chargeLimit must be between 1 and 100 (got ${toString cfg.chargeLimit}).";
|
||||
}
|
||||
];
|
||||
|
||||
systemd = {
|
||||
services = {
|
||||
set-charge-limit = {
|
||||
|
||||
@@ -260,6 +260,20 @@ in
|
||||
];
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.bootType != "uboot" || cfg.firmwarePackage != null;
|
||||
message = "mjallen.hardware.raspberry-pi.firmwarePackage must be set when bootType is \"uboot\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.bootType != "kernel" || cfg.firmwarePackage != null;
|
||||
message = "mjallen.hardware.raspberry-pi.firmwarePackage must be set when bootType is \"kernel\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.nixosGenerationsDir != "";
|
||||
message = "mjallen.hardware.raspberry-pi.nixosGenerationsDir must be a non-empty path.";
|
||||
}
|
||||
];
|
||||
|
||||
boot = {
|
||||
initrd.availableKernelModules = [
|
||||
|
||||
@@ -15,6 +15,16 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion =
|
||||
!config.${namespace}.desktop.gnome.enable
|
||||
&& !config.${namespace}.desktop.hyprland.enable
|
||||
&& !config.${namespace}.desktop.cosmic.enable;
|
||||
message = "mjallen.headless.enable = true is incompatible with having a desktop environment enabled (gnome, hyprland, or cosmic).";
|
||||
}
|
||||
];
|
||||
|
||||
boot.initrd.systemd.suppressedUnits = lib.mkIf config.systemd.enableEmergencyMode [
|
||||
"emergency.service"
|
||||
"emergency.target"
|
||||
|
||||
@@ -36,6 +36,30 @@ in
|
||||
};
|
||||
|
||||
config = {
|
||||
assertions =
|
||||
let
|
||||
desktopCount = lib.count lib.id [
|
||||
config.${namespace}.desktop.gnome.enable
|
||||
config.${namespace}.desktop.hyprland.enable
|
||||
config.${namespace}.desktop.cosmic.enable
|
||||
];
|
||||
in
|
||||
[
|
||||
{
|
||||
assertion = desktopCount <= 1;
|
||||
message = ''
|
||||
At most one desktop environment may be enabled simultaneously.
|
||||
Currently enabled: ${
|
||||
lib.concatStringsSep ", " (
|
||||
lib.optional config.${namespace}.desktop.gnome.enable "gnome"
|
||||
++ lib.optional config.${namespace}.desktop.hyprland.enable "hyprland"
|
||||
++ lib.optional config.${namespace}.desktop.cosmic.enable "cosmic"
|
||||
)
|
||||
}.
|
||||
'';
|
||||
}
|
||||
];
|
||||
|
||||
# ${namespace}.home.extraOptions = {
|
||||
# home.file = lib.mkAliasDefinitions options.${namespace}.home.file;
|
||||
# home.stateVersion = lib.mkOptionDefault config.system.stateVersion;
|
||||
|
||||
@@ -50,6 +50,17 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = lib.hasPrefix "/" cfg.persistencePath;
|
||||
message = "mjallen.impermanence.persistencePath must be an absolute path (got \"${cfg.persistencePath}\").";
|
||||
}
|
||||
{
|
||||
assertion = cfg.persistencePath != "/";
|
||||
message = "mjallen.impermanence.persistencePath must not be the filesystem root \"/\".";
|
||||
}
|
||||
];
|
||||
|
||||
environment.persistence."/nix/persist/system" = {
|
||||
hideMounts = true;
|
||||
directories = [
|
||||
|
||||
@@ -57,6 +57,33 @@ in
|
||||
];
|
||||
|
||||
config = {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.hostName != "";
|
||||
message = "mjallen.network.hostName must be set to a non-empty string.";
|
||||
}
|
||||
{
|
||||
assertion = cfg.ipv4.method == "auto" || cfg.ipv4.method == "manual";
|
||||
message = "mjallen.network.ipv4.method must be either \"auto\" or \"manual\" (got \"${cfg.ipv4.method}\").";
|
||||
}
|
||||
{
|
||||
assertion = cfg.ipv4.method != "manual" || cfg.ipv4.interface != "";
|
||||
message = "mjallen.network.ipv4.interface must be set when ipv4.method is \"manual\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.ipv4.method != "manual" || cfg.ipv4.address != "";
|
||||
message = "mjallen.network.ipv4.address must be set when ipv4.method is \"manual\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.ipv4.method != "manual" || cfg.ipv4.gateway != "";
|
||||
message = "mjallen.network.ipv4.gateway must be set when ipv4.method is \"manual\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.nat.enable -> cfg.nat.externalInterface != "";
|
||||
message = "mjallen.network.nat.externalInterface must be set when NAT is enabled.";
|
||||
}
|
||||
];
|
||||
|
||||
systemd = {
|
||||
services = {
|
||||
NetworkManager-wait-online.enable = false;
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
|
||||
@@ -20,6 +20,21 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.upsName != "";
|
||||
message = "mjallen.power.ups.upsName must be a non-empty string.";
|
||||
}
|
||||
{
|
||||
assertion = cfg.upsUser != "";
|
||||
message = "mjallen.power.ups.upsUser must be a non-empty string.";
|
||||
}
|
||||
{
|
||||
assertion = builtins.hasAttr "jallen-nas/ups_password" config.sops.secrets;
|
||||
message = "mjallen.power.ups requires a sops secret \"jallen-nas/ups_password\" to be declared.";
|
||||
}
|
||||
];
|
||||
|
||||
power.ups = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
|
||||
@@ -25,8 +25,14 @@ in
|
||||
];
|
||||
extraConfig = {
|
||||
networking.firewall = lib.mkIf cfg.openFirewall {
|
||||
allowedTCPPorts = [ cfg.assetPort cfg.tftpPort ];
|
||||
allowedUDPPorts = [ cfg.assetPort cfg.tftpPort ];
|
||||
allowedTCPPorts = [
|
||||
cfg.assetPort
|
||||
cfg.tftpPort
|
||||
];
|
||||
allowedUDPPorts = [
|
||||
cfg.assetPort
|
||||
cfg.tftpPort
|
||||
];
|
||||
};
|
||||
virtualisation.oci-containers.containers.netbootxyz.ports = lib.mkForce [
|
||||
"${toString cfg.port}:3000"
|
||||
|
||||
@@ -14,6 +14,13 @@ in
|
||||
imports = [ ./options.nix ];
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.sshKeyPaths != [ ];
|
||||
message = "mjallen.sops.sshKeyPaths must contain at least one SSH key path for age decryption.";
|
||||
}
|
||||
];
|
||||
|
||||
sops = {
|
||||
defaultSopsFile = if cfg.defaultSopsFile != null then cfg.defaultSopsFile else defaultSops;
|
||||
age.sshKeyPaths = cfg.sshKeyPaths;
|
||||
|
||||
Reference in New Issue
Block a user