mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-07 15:42:03 +00:00
11 lines
169 B
Nix
11 lines
169 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "format-root";
|
|
runtimeInputs = [
|
|
pkgs.gum
|
|
pkgs.disko
|
|
];
|
|
text = builtins.readFile ./format-root.sh;
|
|
}
|