2025-09-02 23:42:31 +01:00
|
|
|
{
|
|
|
|
flake.modules.homeManager.base =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.packages = [
|
|
|
|
(pkgs.writeShellApplication {
|
|
|
|
name = "zet";
|
|
|
|
|
|
|
|
runtimeInputs = with pkgs; [
|
|
|
|
bashInteractive
|
|
|
|
coreutils
|
|
|
|
fzf
|
2025-09-06 22:17:04 +01:00
|
|
|
git
|
2025-09-02 23:42:31 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
text = builtins.readFile ./script.sh;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|