mirror of
https://git.sr.ht/~neverness/ultima
synced 2024-12-29 19:03:52 +00:00
49 lines
828 B
Nix
49 lines
828 B
Nix
{
|
|
x,
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
with x;
|
|
let
|
|
cfg = config.module.hardware.network;
|
|
in
|
|
{
|
|
options = {
|
|
module.hardware.network = {
|
|
enable = mkBool;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
networkmanagerapplet
|
|
networkmanager-l2tp
|
|
pptp
|
|
];
|
|
networking = {
|
|
# FOR NETWORK
|
|
resolvconf.dnsSingleRequest = true;
|
|
networkmanager = True // {
|
|
dns = "systemd-resolved";
|
|
wifi = {
|
|
powersave = true;
|
|
macAddress = "random";
|
|
backend = "iwd";
|
|
};
|
|
};
|
|
};
|
|
services = {
|
|
resolved = True;
|
|
pptpd = True;
|
|
};
|
|
systemd.services = {
|
|
# IDK
|
|
NetworkManager-wait-online = False;
|
|
systemd-networkd-wait-online = mkForce False;
|
|
};
|
|
};
|
|
}
|