This commit is contained in:
Michael 2024-02-18 17:06:02 +00:00
parent 00aaa4d250
commit 793ce0c8db
2 changed files with 7 additions and 3 deletions

5
push.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
git add .
git commit -m "fixed"
git push origin master

View File

@ -1,6 +1,5 @@
{ ... }:
let
pkgs = (import <nixpkgs> { overlays = [ (import ./overlay.nix) ]);
in {
pkgs = import <nixpkgs> { overlays = [ (import ./overlay.nix) ];
in
qemu = pkgs.patched-qemu;
}