mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-10 06:23:04 -04:00
really big refactor
This commit is contained in:
parent
1d4904a4c9
commit
375a1b2e89
20 changed files with 188 additions and 151 deletions
17
common/systemModules/networkManager.nix
Normal file
17
common/systemModules/networkManager.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ NAME }: { ... }: {
|
||||
users = {
|
||||
users = {
|
||||
"${NAME}" = {
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
networking = {
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
};
|
||||
nameservers = [ "1.1.1.1" "1.0.0.1" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue