mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-01-31 08:30:25 +00:00
- Updated justfile to use nh for deploy commands - Added nh to flake devShell - Added nh and just to shell.nix - Enabled programs.nh in nixos
13 lines
156 B
Nix
13 lines
156 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nix
|
|
home-manager
|
|
git
|
|
sops
|
|
git-crypt
|
|
just
|
|
nh
|
|
];
|
|
}
|