From 47f0a180fe66a811dceb1a12f86190f62e6ca687 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Wed, 28 Aug 2024 14:20:31 -0700 Subject: [PATCH] feat(oracle): fix boot --- nixos/hardware/oracle_micro.nix | 18 +++++++++--------- systems/default.nix | 3 ++- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/nixos/hardware/oracle_micro.nix b/nixos/hardware/oracle_micro.nix index 54b50961..42a27675 100644 --- a/nixos/hardware/oracle_micro.nix +++ b/nixos/hardware/oracle_micro.nix @@ -16,15 +16,15 @@ kernelModules = ["nvme"]; }; }; - fileSystems = { - "/boot" = { - device = "/dev/disk/by-uuid/1F52-C11D"; - fsType = "vfat"; - }; - "/" = { - device = "/dev/sda1"; - fsType = "ext4"; - }; + }; + fileSystems = { + "/boot" = { + device = "/dev/disk/by-uuid/1F52-C11D"; + fsType = "vfat"; + }; + "/" = { + device = "/dev/sda1"; + fsType = "ext4"; }; }; } diff --git a/systems/default.nix b/systems/default.nix index 84c28679..c19cf99f 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -34,7 +34,8 @@ in nixosConfigurations = {}; homeConfigurations = {}; darwinConfigurations = {}; - } // { + } + // { systems = hostConfigs; } // set.merge (set.mapToValues processHost hostConfigs)