nixos-config/hosts/burnham/home.nix

13 lines
200 B
Nix
Raw Normal View History

2024-01-25 11:31:05 +01:00
{ pkgs, lib, ... }:
{
imports = [
./../../home/base.nix
];
programs = {
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
};
home.stateVersion = "23.05";
}