From 2ed4d83132f28ec91eff162eba5bcb08bf704e41 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 14 Dec 2023 00:54:34 -0600 Subject: [PATCH] Maybe test home? --- garnix.yaml | 6 ++---- home/default.nix | 6 ++++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/garnix.yaml b/garnix.yaml index f7459f8..531ec88 100644 --- a/garnix.yaml +++ b/garnix.yaml @@ -1,9 +1,7 @@ builds: include: - - '*.x86_64-linux.*' - - '*.aarch64-linux.*' - - nixosConfigurations.* - darwinConfigurations.* - - homeConfigurations."gregory.hellings".activationPackage - devShell.x86_64-linux - devShell.aarch64-linux + - homeConfigurations.greghellings.activationPackage + - nixosConfigurations.* diff --git a/home/default.nix b/home/default.nix index 0e50814..ce74127 100644 --- a/home/default.nix +++ b/home/default.nix @@ -4,8 +4,8 @@ ... }: -{ - "gregory.hellings" = +rec { + greghellings = let system = "x86_64-linux"; pkgs = (import inputs.nixunstable { inherit system overlays; }); @@ -20,4 +20,6 @@ username = "gregory.hellings"; }; }; + + "gregory.hellings" = greghellings; }