nix-config/modules/zet/default.nix
2025-09-02 23:52:15 +01:00

19 lines
345 B
Nix

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