rename modules/ppp.nix -> modules/ppp/default.nix

module-based-network
Daniel Barlow 2023-07-14 21:08:33 +01:00
parent 682183a88d
commit c13defc891
2 changed files with 2 additions and 4 deletions

View File

@ -34,7 +34,7 @@ in rec {
imports = [
../modules/wlan.nix
../modules/standard.nix
../modules/ppp.nix
../modules/ppp
];
rootfsType = "jffs2";
hostname = "rotuer";

View File

@ -1,8 +1,6 @@
{ lib, pkgs, config, ...}:
let
inherit (lib) mkEnableOption mkOption types isDerivation hasAttr ;
inherit (pkgs.pseudofile) dir symlink;
inherit (pkgs) stdenv wireless-regdb;
inherit (lib) mkOption types;
in {
options = {
system.service.pppoe = mkOption {