mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
17 lines
268 B
Nix
17 lines
268 B
Nix
{ NAME }: { ... }: {
|
|
users = {
|
|
users = {
|
|
"${NAME}" = {
|
|
extraGroups = [
|
|
"networkmanager"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
};
|
|
nameservers = [ "1.1.1.1" "1.0.0.1" ];
|
|
};
|
|
}
|