Skip to content

Commit

Permalink
Work around bug NixOS/nixpkgs#180175
Browse files Browse the repository at this point in the history
  • Loading branch information
gorschu committed Mar 18, 2023
1 parent 79320ae commit 2a348d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hosts/common/optional/desktop/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pkgs, ...}: {
{pkgs, lib, ...}: {
imports = [
./_1password.nix
./cups.nix
Expand All @@ -11,6 +11,8 @@
enable = true;
wifi.backend = "iwd";
};
# work around bug https://github.com/NixOS/nixpkgs/issues/180175
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;

services.udev.packages = [pkgs.yubikey-personalization];

Expand Down

0 comments on commit 2a348d3

Please sign in to comment.