chore(nixfmt): Format all files since nixfmt version changed

This commit is contained in:
sinavir 2025-01-07 11:35:06 +01:00
parent 380f629b0e
commit d7622f4d8f
No known key found for this signature in database
4 changed files with 31 additions and 28 deletions
default.nix
machines
liminix/ap01
nixos
build01/secrets
vault01

View file

@ -178,24 +178,27 @@ in
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
name = "dgnum-infra"; name = "dgnum-infra";
packages = [ packages =
(pkgs.nixos-generators.overrideAttrs (_: { [
version = "1.8.0-unstable"; (pkgs.nixos-generators.overrideAttrs (_: {
src = sources.nixos-generators; version = "1.8.0-unstable";
})) src = sources.nixos-generators;
pkgs.npins }))
pkgs.npins
# SSO testing # SSO testing
pkgs.kanidm pkgs.kanidm
pkgs.freeradius pkgs.freeradius
pkgs.picocom # for serial access pkgs.picocom # for serial access
(pkgs.callPackage ./lib/colmena { (pkgs.callPackage ./lib/colmena {
colmena = pkgs.callPackage "${sources.colmena}/package.nix" { }; colmena = pkgs.callPackage "${sources.colmena}/package.nix" { };
}) })
(pkgs.callPackage "${sources.agenix}/pkgs/agenix.nix" { }) (pkgs.callPackage "${sources.agenix}/pkgs/agenix.nix" { })
(pkgs.callPackage "${sources.lon}/nix/packages/lon.nix" { }) (pkgs.callPackage "${sources.lon}/nix/packages/lon.nix" { })
] ++ git-checks.enabledPackages ++ (builtins.attrValues scripts); ]
++ git-checks.enabledPackages
++ (builtins.attrValues scripts);
shellHook = builtins.concatStringsSep "\n" [ shellHook = builtins.concatStringsSep "\n" [
git-checks.shellHook git-checks.shellHook

View file

@ -89,7 +89,7 @@ in
hostap-2 = mkWifiSta ( hostap-2 = mkWifiSta (
baseParams // clientRadius // externalRadius // radiusKeyMgmt // modernParams baseParams // clientRadius // externalRadius // radiusKeyMgmt // modernParams
) config.hardware.networkInterfaces.wlan1 secrets-2; ) config.hardware.networkInterfaces.wlan1 secrets-2;
# Oneshot that waits until the hostapd has set the interface in operational state. # Oneshot that waits until the hostapd has set the interface in operational state.
hostap-2-ready = svc.hostapd-ready.build { hostap-2-ready = svc.hostapd-ready.build {
interface = config.hardware.networkInterfaces.wlan1; interface = config.hardware.networkInterfaces.wlan1;
}; };

View file

@ -2,6 +2,8 @@
# #
# SPDX-License-Identifier: EUPL-1.2 # SPDX-License-Identifier: EUPL-1.2
(import ../../../../keys).mkSecrets [ "build01" ] [ (import ../../../../keys).mkSecrets
"forgejo_runners-token_file" [ "build01" ]
] [
"forgejo_runners-token_file"
]

View file

@ -285,15 +285,13 @@ in
]; ];
script = '' script = ''
if ping -c 1 8.8.8.8 > /dev/null || ping -c 1 1.1.1.1 > /dev/null; then if ping -c 1 8.8.8.8 > /dev/null || ping -c 1 1.1.1.1 > /dev/null; then
${ ${lib.concatMapStringsSep "\n " (
lib.concatMapStringsSep "\n " ({ interfaceName, ... }: "networkctl up ${interfaceName}") userVlans { interfaceName, ... }: "networkctl up ${interfaceName}"
} ) userVlans}
else else
${ ${lib.concatMapStringsSep "\n " (
lib.concatMapStringsSep "\n " ( { interfaceName, ... }: "networkctl down ${interfaceName}"
{ interfaceName, ... }: "networkctl down ${interfaceName}" ) userVlans}
) userVlans
}
fi fi
''; '';
}; };