Initial content commit

This commit is contained in:
2025-10-03 16:11:03 +02:00
commit 9e7054d962
5 changed files with 269 additions and 0 deletions

15
shell.nix Normal file
View File

@@ -0,0 +1,15 @@
let
sources = import ./npins;
pkgs = import sources.nixpkgs {};
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
npins
nixos-anywhere
nixos-rebuild
];
shellHook = ''
export NIX_PATH="nixpkgs=${sources.nixpkgs}:nixos-config=$PWD/configuration.nix"
'';
}