Skip to content

Commit

Permalink
fix(flake): unbreak stuff nixfmt ruined
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Jun 10, 2024
1 parent 4254f85 commit f98bf77
Showing 1 changed file with 5 additions and 19 deletions.
24 changes: 5 additions & 19 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,10 @@
});

nixosModules.default = { config, lib, pkgs, ... }: with lib; let
name = " eclssd ";
name = "eclssd";
cfg = config.services.${name};
cfgCtl = config.programs.eclssctl;
description = "
Environmental
Controls
and
Life
Support
Systems
daemon ";
description = "Environmental Controls and Life Support Systems daemon";
in
{
options = with types; {
Expand All @@ -126,16 +119,9 @@

i2cdev = mkOption {
type = path;
default = " /dev/i2c-1 ";
example = " /dev/i2c-1 ";
description = "
The
I2C
device
to
use
for
communication with sensors.";
default = "/dev/i2c-1";
example = "/dev/i2c-1";
description = "The I2C device to use for communication with sensors.";
};

openPorts = mkOption {
Expand Down

0 comments on commit f98bf77

Please sign in to comment.