Skip to content

Commit

Permalink
fix format issues with 0.27.0 merge
Browse files Browse the repository at this point in the history
In the course of the 0.27.0 merge we were having trouble with the lint
workflow that ~enabled me to accidentally a few format issues in.

I introduced a format-only diff when we fiddled with a few different
ways of disabling '--determinate' features. I inadvertently swapped
the order of these when merging an item back in.

I also left an errant space in flake.nix.
  • Loading branch information
abathur committed Dec 20, 2024
1 parent 635e449 commit e931271
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
} @ inputs:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
systemsSupportedByDeterminateNixd = [ ]; # avoid refs to detsys nixd for now
systemsSupportedByDeterminateNixd = [ ]; # avoid refs to detsys nixd for now

forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: (forSystem system f));

Expand Down
2 changes: 1 addition & 1 deletion src/planner/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::{
action::{
base::{CreateDirectory, RemoveDirectory},
common::{
ConfigureNix, ConfigureDeterminateNixdInitService, ConfigureUpstreamInitService,
ConfigureDeterminateNixdInitService, ConfigureNix, ConfigureUpstreamInitService,
CreateUsersAndGroups, ProvisionDeterminateNixd, ProvisionNix,
},
linux::{
Expand Down
2 changes: 1 addition & 1 deletion src/planner/macos/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::{
action::{
base::RemoveDirectory,
common::{
ConfigureNix, ConfigureDeterminateNixdInitService, ConfigureUpstreamInitService,
ConfigureDeterminateNixdInitService, ConfigureNix, ConfigureUpstreamInitService,
CreateUsersAndGroups, ProvisionDeterminateNixd, ProvisionNix,
},
macos::{
Expand Down

0 comments on commit e931271

Please sign in to comment.