DRY loopback interface, it's the same everywhere
This commit is contained in:
parent
0436025e91
commit
fec77a44b5
6 changed files with 30 additions and 73 deletions
|
@ -3,6 +3,8 @@ let
|
|||
inherit (lib) mkEnableOption mkOption types isDerivation hasAttr ;
|
||||
inherit (pkgs.pseudofile) dir symlink;
|
||||
inherit (pkgs) busybox;
|
||||
inherit (pkgs.liminix.networking) address interface;
|
||||
inherit (pkgs.liminix.services) bundle;
|
||||
|
||||
type_service = types.package // {
|
||||
name = "service";
|
||||
|
@ -46,6 +48,18 @@ in {
|
|||
defaultProfile.packages = with pkgs;
|
||||
[ s6 s6-init-bin busybox execline s6-linux-init s6-rc ];
|
||||
|
||||
hardware.networkInterfaces = {
|
||||
lo =
|
||||
let iface = interface { type = "loopback"; device = "lo";};
|
||||
in bundle {
|
||||
name = "loopback";
|
||||
contents = [
|
||||
(address iface { family = "inet4"; address ="127.0.0.1"; prefixLength = 8;})
|
||||
(address iface { family = "inet6"; address ="::1"; prefixLength = 128;})
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
kernel = rec {
|
||||
config = {
|
||||
IKCONFIG = "y";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue