rename modules/ppp.nix -> modules/ppp/default.nix
This commit is contained in:
parent
682183a88d
commit
c13defc891
2 changed files with 2 additions and 4 deletions
|
@ -34,7 +34,7 @@ in rec {
|
||||||
imports = [
|
imports = [
|
||||||
../modules/wlan.nix
|
../modules/wlan.nix
|
||||||
../modules/standard.nix
|
../modules/standard.nix
|
||||||
../modules/ppp.nix
|
../modules/ppp
|
||||||
];
|
];
|
||||||
rootfsType = "jffs2";
|
rootfsType = "jffs2";
|
||||||
hostname = "rotuer";
|
hostname = "rotuer";
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ lib, pkgs, config, ...}:
|
{ lib, pkgs, config, ...}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkEnableOption mkOption types isDerivation hasAttr ;
|
inherit (lib) mkOption types;
|
||||||
inherit (pkgs.pseudofile) dir symlink;
|
|
||||||
inherit (pkgs) stdenv wireless-regdb;
|
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
system.service.pppoe = mkOption {
|
system.service.pppoe = mkOption {
|
Loading…
Reference in a new issue