mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
417623965e
also change theme to colorscheme
11 lines
347 B
Nix
11 lines
347 B
Nix
{ ... }: {
|
|
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
# replicates the default behaviour.
|
|
networking.useDHCP = false;
|
|
networking.interfaces.enp0s31f6.useDHCP = true;
|
|
networking.interfaces.wlp3s0.useDHCP = true;
|
|
|
|
}
|