nixos-config/hosts/challenger/home.nix

13 lines
200 B
Nix
Raw Normal View History

2024-07-01 23:28:24 +02:00
{ pkgs, lib, ... }:
{
imports = [
./../../home/base.nix
];
programs = {
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
};
home.stateVersion = "24.05";
}