13 lines
341 B
Nix
13 lines
341 B
Nix
{ config, pkgs, lib, ... } :
|
|
let
|
|
inherit (pkgs.liminix.networking) interface address hostapd route dnsmasq;
|
|
inherit (pkgs.liminix.services) oneshot longrun bundle target;
|
|
in rec {
|
|
imports = [
|
|
../../modules/network
|
|
];
|
|
|
|
defaultProfile.prompt = "$(whoami)@$(hostname) blah blah > ";
|
|
|
|
defaultProfile.packages = with pkgs; [ ];
|
|
}
|