mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
Gabriel Arazas
e74640cf16
This makes it possible for easier way to contribute with non-flakes usage.
20 lines
194 B
Nix
20 lines
194 B
Nix
let
|
|
sources = import ./npins;
|
|
in
|
|
{ pkgs ? import sources.nixos-stable { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
inputsFrom = [
|
|
nix
|
|
];
|
|
|
|
packages = [
|
|
npins
|
|
|
|
treefmt
|
|
nixpkgs-fmt
|
|
];
|
|
}
|