tadpole: Add network module

This commit is contained in:
Alexander Heldt
2024-07-21 10:36:15 +02:00
parent 5a558e347f
commit f119c99464
2 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,4 @@
{ pkgs, ... }:
{
imports =
[
@@ -21,8 +20,6 @@
};
};
networking.hostName = "tadpole";
users.users.alex = {
isNormalUser = true;
extraGroups = [ "wheel" ];

View File

@@ -0,0 +1,6 @@
{ ... }:
{
networking = {
hostName = "tadpole";
};
}