mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-23 08:39:11 -05:00
29 lines
381 B
Nix
29 lines
381 B
Nix
{ NAME }:
|
|
{ ... }:
|
|
{
|
|
users = {
|
|
users = {
|
|
"${NAME}" = {
|
|
extraGroups = [
|
|
"networkmanager"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
systemd = {
|
|
network = {
|
|
wait-online = {
|
|
enable = false;
|
|
};
|
|
};
|
|
};
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
};
|
|
nameservers = [
|
|
"1.1.1.1"
|
|
"1.0.0.1"
|
|
];
|
|
};
|
|
}
|