Skip to content

Commit 2093743

Browse files
committed
feat(nix): add nh (Nix Helper) package
1 parent 887e9b2 commit 2093743

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

programs/nix.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ inputs, ... }:
1+
{ inputs, pkgs, ... }:
22

33
{
44
xdg.configFile."nix/nix.conf".text = ''
@@ -8,4 +8,8 @@
88
nix.registry.nixpkgs.flake = inputs.nixpkgs;
99

1010
home.sessionVariables.NIX_PATH = "nixpkgs=${inputs.nixpkgs}";
11+
12+
home.packages = [
13+
pkgs.nh
14+
];
1115
}

0 commit comments

Comments
 (0)