mirror of
https://codeberg.org/muon/home.git
synced 2026-07-03 23:49:35 +00:00
18 lines
318 B
Nix
18 lines
318 B
Nix
{pkgs ? import <nixpkgs> {}, ...}:
|
|
let
|
|
nvft = pkgs.callPackage ./pkgs/nvft {};
|
|
in
|
|
{
|
|
default = pkgs.mkShell {
|
|
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
git
|
|
|
|
sops
|
|
age
|
|
nvfetcher
|
|
nvft
|
|
];
|
|
};
|
|
}
|