morn: Init new host

This commit is contained in:
2025-03-19 17:14:09 +01:00
parent ed47f7b1bf
commit 4ec8b69cde
4 changed files with 80 additions and 0 deletions

12
hosts/morn/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 = "24.11";
}