This commit is contained in:
Miguel Palhas
2025-01-22 15:12:09 +00:00
parent dd4120304f
commit ff77398a55
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -17,6 +17,7 @@
../common/features/fonts.nix
../common/features/nix-ld.nix
../common/features/bluetooth.nix
../common/features/ledger.nix
];
networking.hostName = "arrakis";
+6
View File
@@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
services.udev.packages = with pkgs; [
ledger-udev-rules
];
}