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:
parent
63533f0478
commit
84d6ccf9b2
1 changed files with 14 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue