feat(home): Temporary - install Nix tools

Will be moved to a devshell asap. Just want to be sure it builds first.
This commit is contained in:
punkfairie 2024-11-16 21:32:37 -08:00
parent 63533f0478
commit 84d6ccf9b2
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -1,4 +1,9 @@
{ lib, namespace, ... }: {
lib,
namespace,
pkgs,
...
}:
let let
inherit (lib.${namespace}) enabled; inherit (lib.${namespace}) enabled;
in in
@ -7,6 +12,14 @@ in
targets.genericLinux = enabled; targets.genericLinux = enabled;
# TODO: Move this to a dev shell
home.packages = with pkgs; [
nixfmt-rfc-style
nil
statix
manix
];
${namespace} = { ${namespace} = {
isDesktop = true; isDesktop = true;