1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-16 14:27:06 +00:00

11 lines
169 B
Nix
Raw Normal View History

2025-02-03 17:30:32 -05:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "format-root";
runtimeInputs = [
pkgs.gum
pkgs.disko
];
text = builtins.readFile ./format-root.sh;
}