add spacer for more human-readable log

This commit is contained in:
ulic-youthlic 2025-01-23 23:26:34 +08:00
parent c6e370656b
commit 9a00a48307
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 10 additions and 2 deletions

View file

@ -6,7 +6,10 @@ default:
switch:
nh os switch {{FLAKE_HOME}}
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 u := update
alias p := push

View file

@ -1,6 +1,11 @@
{ ... }:
{ pkgs, ... }:
{
imports = [
./wallpaper
];
config = {
home.packages = with pkgs; [
spacer
];
};
}