From e515408ef22d20dfaf488afdf280dfb2a8978884 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Tue, 15 Apr 2025 22:03:50 +0000 Subject: [PATCH] :bug: [pi4] Fix wrong paths, added missing prettier formatter --- hosts/pi4/default.nix | 6 +++--- hosts/pi4/development.nix | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/pi4/default.nix b/hosts/pi4/default.nix index 40e1fb7..8e3581b 100644 --- a/hosts/pi4/default.nix +++ b/hosts/pi4/default.nix @@ -6,9 +6,9 @@ { imports = [ - (lib.custom.relativeToRoot "shared/nix-helper.nix") - (lib.custom.relativeToRoot "shared/nixos.nix") - (lib.custom.relativeToRoot "shared/shell.nix") + (lib.custom.relativeToRoot "shared/modules/nix-helper.nix") + (lib.custom.relativeToRoot "shared/modules/nixos.nix") + (lib.custom.relativeToRoot "shared/modules/shell.nix") ./boot.nix ./development.nix ./hardware.nix diff --git a/hosts/pi4/development.nix b/hosts/pi4/development.nix index a2b6e7e..68e9a29 100644 --- a/hosts/pi4/development.nix +++ b/hosts/pi4/development.nix @@ -7,5 +7,6 @@ # Formatters treefmt shfmt - ]; + nodePackages.prettier + ]; }