From 84d6ccf9b2b0a6fcbd48e6c380571e0d3ec4a027 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 16 Nov 2024 21:32:37 -0800 Subject: [PATCH] feat(home): Temporary - install Nix tools Will be moved to a devshell asap. Just want to be sure it builds first. --- homes/x86_64-linux/marley@nyx/default.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/homes/x86_64-linux/marley@nyx/default.nix b/homes/x86_64-linux/marley@nyx/default.nix index c503861..cf3551a 100644 --- a/homes/x86_64-linux/marley@nyx/default.nix +++ b/homes/x86_64-linux/marley@nyx/default.nix @@ -1,4 +1,9 @@ -{ lib, namespace, ... }: +{ + lib, + namespace, + pkgs, + ... +}: let inherit (lib.${namespace}) enabled; in @@ -7,6 +12,14 @@ in targets.genericLinux = enabled; + # TODO: Move this to a dev shell + home.packages = with pkgs; [ + nixfmt-rfc-style + nil + statix + manix + ]; + ${namespace} = { isDesktop = true;