Files
nix-config/homes/aarch64-linux/root@pi4/default.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

19 lines
365 B
Nix

{ config, lib, ... }:
let
shellAliases = {
update-boot = "nixos-rebuild boot --max-jobs 10";
update-switch = "nixos-rebuild switch --max-jobs 10";
};
in
{
home = {
username = "root";
homeDirectory = lib.mkForce "/${config.home.username}";
enableNixpkgsReleaseCheck = false;
};
programs = {
zsh.shellAliases = shellAliases;
};
}