nix-config/modules/zet/default.nix

20 lines
361 B
Nix

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