about summary refs log tree commit diff
path: root/modules/hardware
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-06-10 11:42:32 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-10 13:12:35 -0700
commit98e01cdbfa047a32c1beb73438c5b93ca0592978 (patch)
tree403b462f1b6d6e4432c010e8f47e179e3e730a97 /modules/hardware
parentdocs(gerrit): document various things (diff)
downloadworld-98e01cdbfa047a32c1beb73438c5b93ca0592978.tar.gz
fix(fmt): correct formatting for all nix files
This was done by running `nixpkgs-fmt .'.

Change-Id: I4ea6c1e759bf468d08074be2111cbc7af72df295
Reviewed-on: https://cl.fcuny.net/c/world/+/404
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/amd/default.nix3
-rw-r--r--modules/hardware/bluetooth/default.nix3
-rw-r--r--modules/hardware/intel/default.nix3
-rw-r--r--modules/hardware/networking/default.nix3
-rw-r--r--modules/hardware/sound/default.nix3
5 files changed, 10 insertions, 5 deletions
diff --git a/modules/hardware/amd/default.nix b/modules/hardware/amd/default.nix
index 05362db..e8b80b0 100644
--- a/modules/hardware/amd/default.nix
+++ b/modules/hardware/amd/default.nix
@@ -1,6 +1,7 @@
 { config, lib, ... }:
 let cfg = config.my.hardware.amd;
-in {
+in
+{
   options.my.hardware.amd = with lib; {
     enable = mkEnableOption "AMD related configuration";
   };
diff --git a/modules/hardware/bluetooth/default.nix b/modules/hardware/bluetooth/default.nix
index 0ac2cf8..b48c51c 100644
--- a/modules/hardware/bluetooth/default.nix
+++ b/modules/hardware/bluetooth/default.nix
@@ -1,6 +1,7 @@
 { config, lib, pkgs, ... }:
 let cfg = config.my.hardware.bluetooth;
-in {
+in
+{
   options.my.hardware.bluetooth = with lib; {
     enable = mkEnableOption "bluetooth configuration";
   };
diff --git a/modules/hardware/intel/default.nix b/modules/hardware/intel/default.nix
index 9a53f35..26d9877 100644
--- a/modules/hardware/intel/default.nix
+++ b/modules/hardware/intel/default.nix
@@ -1,6 +1,7 @@
 { config, lib, ... }:
 let cfg = config.my.hardware.intel;
-in {
+in
+{
   options.my.hardware.intel = with lib; {
     enable = mkEnableOption "intel related configuration";
   };
diff --git a/modules/hardware/networking/default.nix b/modules/hardware/networking/default.nix
index d19388b..fac6c30 100644
--- a/modules/hardware/networking/default.nix
+++ b/modules/hardware/networking/default.nix
@@ -1,6 +1,7 @@
 { config, lib, ... }:
 let cfg = config.my.hardware.networking;
-in {
+in
+{
   options.my.hardware.networking = with lib; {
     wireless = { enable = mkEnableOption "wireless configuration"; };
   };
diff --git a/modules/hardware/sound/default.nix b/modules/hardware/sound/default.nix
index dc9f079..edb937e 100644
--- a/modules/hardware/sound/default.nix
+++ b/modules/hardware/sound/default.nix
@@ -1,6 +1,7 @@
 { config, lib, pkgs, ... }:
 let cfg = config.my.hardware.sound;
-in {
+in
+{
   options.my.hardware.sound = with lib; {
     pipewire = { enable = mkEnableOption "pipewire configuration"; };
   };