leonard: init host

This commit is contained in:
2025-10-17 20:59:34 +02:00
parent b1fed06b7d
commit 49a3c0211e
4 changed files with 73 additions and 0 deletions

12
hosts/leonard/home.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, lib, ... }:
{
imports = [
./../../home/base.nix
];
programs = {
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
};
home.stateVersion = "25.05";
}