mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
15 lines
278 B
Nix
15 lines
278 B
Nix
{pkgs ? import <nixpkgs> {}, ...}: {
|
|
default = pkgs.mkShell {
|
|
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
home-manager
|
|
git
|
|
|
|
ssh-to-age
|
|
gnupg
|
|
age
|
|
];
|
|
};
|
|
}
|