treewide: fmt

This commit is contained in:
Felix Buehler 2024-07-28 21:08:02 +02:00
parent 330abe53d2
commit ea37c7b836
95 changed files with 1162 additions and 779 deletions

View file

@ -1,9 +1,11 @@
# based on: https://github.com/Mic92/dotfiles/blob/main/nixos/images/base-config.nix
{ lib
, pkgs
, config
, ...
}: {
{
lib,
pkgs,
config,
...
}:
{
system.stateVersion = config.system.nixos.version;
networking = {
@ -23,7 +25,8 @@
network.enable = true;
network.networks =
lib.mapAttrs'
(num: _:
(
num: _:
lib.nameValuePair "eth${num}" {
matchConfig.Name = "eth${num}";
networkConfig = {
@ -40,7 +43,8 @@
RouteMetric = 512;
};
ipv6AcceptRAConfig.Token = "::521a:c5ff:fefe:65d9";
})
}
)
{
"0" = { };
"1" = { };