1
Fork 0
satellite/home/features/cli/scripts/default.nix

7 lines
136 B
Nix
Raw Normal View History

{ pkgs, ... }:
let uptimes = pkgs.writeShellScriptBin "uptimes" (builtins.readFile ./uptimes.sh);
in
{
home.packages = [ uptimes ];
}