Maybe test home?

This commit is contained in:
Greg Hellings
2023-12-14 00:54:34 -06:00
parent 457a4e1c62
commit 2ed4d83132
2 changed files with 6 additions and 6 deletions
+2 -4
View File
@@ -1,9 +1,7 @@
builds: builds:
include: include:
- '*.x86_64-linux.*'
- '*.aarch64-linux.*'
- nixosConfigurations.*
- darwinConfigurations.* - darwinConfigurations.*
- homeConfigurations."gregory.hellings".activationPackage
- devShell.x86_64-linux - devShell.x86_64-linux
- devShell.aarch64-linux - devShell.aarch64-linux
- homeConfigurations.greghellings.activationPackage
- nixosConfigurations.*
+4 -2
View File
@@ -4,8 +4,8 @@
... ...
}: }:
{ rec {
"gregory.hellings" = greghellings =
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = (import inputs.nixunstable { inherit system overlays; }); pkgs = (import inputs.nixunstable { inherit system overlays; });
@@ -20,4 +20,6 @@
username = "gregory.hellings"; username = "gregory.hellings";
}; };
}; };
"gregory.hellings" = greghellings;
} }