add spacer for more human-readable log
This commit is contained in:
parent
51ed7b6e56
commit
d47b43f664
2 changed files with 10 additions and 2 deletions
5
Justfile
5
Justfile
|
|
@ -6,7 +6,10 @@ default:
|
||||||
switch:
|
switch:
|
||||||
nh os switch {{FLAKE_HOME}}
|
nh os switch {{FLAKE_HOME}}
|
||||||
update:
|
update:
|
||||||
nix flake update
|
nix flake update | spacer
|
||||||
|
push host target:
|
||||||
|
nixos-rebuild switch --flake {{FLAKE_HOME}}#{{host}} --target-host {{target}} | spacer
|
||||||
|
|
||||||
alias s := switch
|
alias s := switch
|
||||||
alias u := update
|
alias u := update
|
||||||
|
alias p := push
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,11 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./wallpaper
|
./wallpaper
|
||||||
];
|
];
|
||||||
|
config = {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
spacer
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue