diff --git a/configs/networkmanager.nix b/configs/networkmanager.nix index 0145096..223ba18 100644 --- a/configs/networkmanager.nix +++ b/configs/networkmanager.nix @@ -1,6 +1,5 @@ { lib, pkgs, ... }: let - autowifi = pkgs.writers.writePython3Bin "autowifi" { flakeIgnore = [ "E501" ]; } ; profile = name: custom: lib.recursiveUpdate { connection.id = name; connection.type = "wifi"; @@ -83,18 +82,5 @@ in users.users.me.extraGroups = [ "networkmanager" ]; - systemd.services.autowifi = { - enable = false; - description = "Automatic wifi connector"; - wantedBy = [ "multi-user.target" ]; - path = [ pkgs.networkmanager ]; - serviceConfig = { - Type = "simple"; - Restart = "always"; - RestartSec = "10s"; - ExecStart = "${autowifi}/bin/autowifi"; - }; - }; - environment.systemPackages = [ pkgs.speedtest-cli ]; } diff --git a/systems/manakish/configuration.nix b/systems/manakish/configuration.nix index 3d70689..16777d9 100644 --- a/systems/manakish/configuration.nix +++ b/systems/manakish/configuration.nix @@ -26,7 +26,7 @@ in }; wireless.interfaces = [ "wlp3s0" ]; retiolum = retiolumAddresses.manakish; - networking.hostName = "manakish"; + hostName = "manakish"; }; system.stateVersion = "20.09"; # Did you read the comment?