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