mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
13 lines
257 B
Nix
13 lines
257 B
Nix
{pkgs ? import <nixpkgs> {}, ...}: {
|
|
default = pkgs.mkShell {
|
|
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
git
|
|
|
|
sops
|
|
age
|
|
nvfetcher
|
|
];
|
|
};
|
|
}
|