Add zet script

This commit is contained in:
Oliver Davies 2025-09-02 23:42:31 +01:00
parent ccac9e3fd5
commit ae0a1f82c9
2 changed files with 134 additions and 0 deletions

19
modules/zet/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "zet";
runtimeInputs = with pkgs; [
bashInteractive
coreutils
fzf
];
text = builtins.readFile ./script.sh;
})
];
};
}