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

18 lines
326 B
Nix
Executable File

{ 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}";
};
programs = {
zsh.shellAliases = shellAliases;
};
}