Add zet
script
This commit is contained in:
parent
ccac9e3fd5
commit
ae0a1f82c9
2 changed files with 134 additions and 0 deletions
19
modules/zet/default.nix
Normal file
19
modules/zet/default.nix
Normal 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;
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue