feat: attempt home ci

This commit is contained in:
Kat Inskip 2025-07-22 13:37:49 -07:00
parent c8368a050e
commit 07aa0b62a0
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
16 changed files with 288 additions and 141 deletions

15
systems/home-shell.nix Normal file
View file

@ -0,0 +1,15 @@
_: let
hostConfig = {tree, ...}: {
imports = with tree.home.profiles; [
common
shell
];
};
in {
arch = "x86_64";
type = "Home";
ci.enable = true; # TODO: fix arcnmx/nixexprs overlay issue???
modules = [
hostConfig
];
}