nix-config/modules/zet/default.nix

20 lines
345 B
Nix
Raw Normal View History

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
];
text = builtins.readFile ./script.sh;
})
];
};
}