fixed the nom thing, wrong one in the rebuild script
This commit is contained in:
parent
18e7258241
commit
81a76efc8d
2 changed files with 4 additions and 4 deletions
4
justfile
4
justfile
|
@ -1,11 +1,11 @@
|
|||
build:
|
||||
sudo echo "sudo check..." && sudo nixos-rebuild -v switch --flake .# --show-trace |& nom
|
||||
sudo echo "sudo check..." && sudo nixos-rebuild --log-format internal-json -v switch --flake .# --show-trace |& nom --json
|
||||
|
||||
run:
|
||||
nix-repl -f flake:nixpkgs
|
||||
|
||||
test:
|
||||
sudo echo "sudo check..." && sudo nix flake check --show-trace -v |& nom
|
||||
sudo echo "sudo check..." && sudo nix flake check --show-trace --log-format internal-json -v |& nom --json
|
||||
|
||||
update:
|
||||
nix flake update --log-format internal-json -v |& nom --json && zsh
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
writeShellApplication,
|
||||
nom,
|
||||
nix-output-monitor,
|
||||
just,
|
||||
}:
|
||||
writeShellApplication
|
||||
{
|
||||
name = "rebuild-no-inhibit";
|
||||
|
||||
runtimeInputs = [nom just];
|
||||
runtimeInputs = [nix-output-monitor just];
|
||||
|
||||
text = ''
|
||||
# A rebuild script for NixOS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue