diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-08 19:28:38 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-08 19:28:38 -0800 |
commit | d8900b3f01bf98911516d39c2c96549485f54577 (patch) | |
tree | a31233d917a56babc10fed8116ff32369bf4f1a1 /configuration.nix | |
parent | a1835a4ae9eacf8cd0379e4cd1aa768218426967 (diff) |
fix email imap; start of udev optimizations
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 16 |
1 files changed, 8 insertions, 8 deletions
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; |