feat(scripts): add byebye for easy poweroff

This commit is contained in:
Mohammad Rafiq 2025-03-22 06:02:22 +08:00
parent 38e104606c
commit 5e8a013e11
No known key found for this signature in database
2 changed files with 43 additions and 1 deletions

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
home.packages = [
(pkgs.writers.writePython3Bin "git-extract" {
libraries = with pkgs.python3Packages; [
@ -8,5 +9,6 @@
} (builtins.readFile ./git-extract.py))
(pkgs.writeShellScriptBin "rebuild" (builtins.readFile ./rebuild.sh))
(pkgs.writeShellScriptBin "byebye" (builtins.readFile ./byebye.sh))
];
}