mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 06:50:14 +01:00
fix: set avahi.enable to lib.mkDefault false instead of false so that individual hosts can override this
This commit is contained in:
parent
3c265f96fd
commit
1d735c345a
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
networking = {
|
||||
networkmanager = {
|
||||
|
|
@ -11,6 +11,6 @@
|
|||
};
|
||||
};
|
||||
services = {
|
||||
avahi.enable = false;
|
||||
avahi.enable = lib.mkDefault false;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue