From d8900b3f01bf98911516d39c2c96549485f54577 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 8 Jan 2025 19:28:38 -0800 Subject: fix email imap; start of udev optimizations --- configuration.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index bf8191b..47d6140 100644 --- a/configuration.nix +++ b/configuration.nix @@ -46,9 +46,6 @@ in }; boot = { - # CHANGEME delete initrd entry - initrd.luks.devices."luks-30d6b69f-1ec0-4111-b5d3-c0138d485a49".device = "/dev/disk/by-uuid/30d6b69f-1ec0-4111-b5d3-c0138d485a49"; - lanzaboote = { enable = vars.secureBoot; pkiBundle = "/etc/secureboot"; @@ -287,11 +284,14 @@ in }; # Misc. - udev.packages = with pkgs; [ - platformio-core - platformio-core.udev - openocd - ]; + udev = { + extraRules = ''''; + packages = with pkgs; [ + platformio-core + platformio-core.udev + openocd + ]; + }; printing.enable = true; udisks2.enable = true; -- cgit