diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-10T21·30+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-10T21·48+0000 |
commit | 726eff80f131e81e56faf4b6273ffe74e862e7ab (patch) | |
tree | cfaf588137c10458ff89aca89456c287b59011c3 | |
parent | a5d8f5273c096f9770647e584532af4b388d6bbf (diff) |
fix(glittershark/system): Build yerenSystem in CI r/2472
This wasn't working because yerenSystem wasn't actually accessing the `system` attribute (like the other systems), which meant it was just an attribute set full of stuff. Change-Id: I0abe56f0a1f18e4e542cb458dfcdf81e8a0ddc01 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2923 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
-rw-r--r-- | users/glittershark/system/system/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/glittershark/system/system/default.nix b/users/glittershark/system/system/default.nix index 78cab61a01f9..6592eddc08e3 100644 --- a/users/glittershark/system/system/default.nix +++ b/users/glittershark/system/system/default.nix @@ -32,7 +32,7 @@ rec { yeren = import ./machines/yeren.nix; - yerenSystem = depot.ops.nixos.nixosFor yeren; + yerenSystem = (depot.ops.nixos.nixosFor yeren).system; iso = import ./iso.nix args; |