mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 15:45:39 +00:00
10 lines
126 B
Nix
10 lines
126 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nix
|
|
home-manager
|
|
git
|
|
sops
|
|
];
|
|
}
|