shinobu/router: Use callPackage for common

This commit is contained in:
Simon Bruder 2023-10-18 20:04:04 +02:00
parent 19da5e13b9
commit 1740570d00
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC
5 changed files with 7 additions and 6 deletions

View file

@ -1,3 +1,4 @@
{ ... }:
{ {
domain = "home.sbruder.de"; domain = "home.sbruder.de";
tc = { tc = {

View file

@ -27,7 +27,7 @@
# Thanks to Intels wisdom, its not possible to use 5GHz in AP mode. # Thanks to Intels wisdom, its not possible to use 5GHz in AP mode.
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
cfg = import ./common.nix; cfg = pkgs.callPackage ./common.nix { };
in in
{ {
imports = [ imports = [

View file

@ -1,6 +1,6 @@
{ config, ... }: { config, pkgs, ... }:
let let
cfg = import ./common.nix; cfg = pkgs.callPackage ./common.nix { };
in in
{ {
services.dnsmasq = { services.dnsmasq = {

View file

@ -1,6 +1,6 @@
{ config, lib, ... }: { config, lib, pkgs, ... }:
let let
cfg = import ./common.nix; cfg = pkgs.callPackage ./common.nix { };
mkKeyValue = lib.generators.mkKeyValueDefault mkKeyValue = lib.generators.mkKeyValueDefault
rec { rec {

View file

@ -8,7 +8,7 @@
# I averaged a longer iperf3 run to around 509Kbit/s ≈ 4.17Mbit/s (excluding the initial burst). # I averaged a longer iperf3 run to around 509Kbit/s ≈ 4.17Mbit/s (excluding the initial burst).
{ lib, pkgs, utils, ... }: { lib, pkgs, utils, ... }:
let let
cfg = ((import ./common.nix).tc); cfg = ((pkgs.callPackage ./common.nix { }).tc);
mkClass = mkClass =
{ minor { minor