hook flake update instead

This commit is contained in:
alisceon 2025-11-17 10:42:27 +01:00
parent 219c50e52d
commit c2467fd2e2
8 changed files with 25 additions and 269 deletions

14
shell.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "nixos_config";
buildInputs = with pkgs; [
git
pre-commit
];
shellHook = ''
echo "NixOS Config Shell"
'';
}