mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
13 lines
368 B
Nix
13 lines
368 B
Nix
{
|
|
perSystem = { inputs', pkgs, ... }: {
|
|
# Definitions like this are entirely equivalent to the ones
|
|
# you may have directly in flake.nix.
|
|
devShells.default = pkgs.mkShellNoCC {
|
|
nativeBuildInputs = [
|
|
inputs'.sops-nix.packages.sops-import-keys-hook
|
|
inputs'.deploy-rs.packages.deploy-rs
|
|
pkgs.nixpkgs-fmt
|
|
];
|
|
};
|
|
};
|
|
}
|