From 5b336df9ce29d6726178acfcd48fc77bb8e283d5 Mon Sep 17 00:00:00 2001 From: Sebastian Schulze Date: Fri, 29 Jul 2022 08:56:50 +0200 Subject: [PATCH] [nix] Add distinct udev network rules for both machines --- dot_config/nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/nixos/configuration.nix b/dot_config/nixos/configuration.nix index 530823c..6048f33 100644 --- a/dot_config/nixos/configuration.nix +++ b/dot_config/nixos/configuration.nix @@ -153,7 +153,7 @@ services.udev.extraRules = '' ACTION=="remove", ATTRS{idVendor}=="3297", RUN+="${pkgs.su}/bin/su bascht --shell ${pkgs.bash}/bin/bash /home/bascht/bin/thinkpad-dock", OWNER="bascht" ACTION=="add", ATTRS{idVendor}=="3297", RUN+="${pkgs.su}/bin/su bascht --shell ${pkgs.bash}/bin/bash /home/bascht/bin/thinkpad-dock", OWNER="bascht" - ''; + '' + builtins.readFile /etc/nixos/machine-udev-network.rules; nixpkgs.config.joypixels.acceptLicense = true;