mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
14 lines
266 B
Nix
14 lines
266 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
|
|
];
|
|
};
|
|
}
|