Skip to content

Commit ea4cb5c

Browse files
committed
chore: apply new file formatting
1 parent 9e36074 commit ea4cb5c

File tree

181 files changed

+1764
-612
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+1764
-612
lines changed

flake.nix

Lines changed: 183 additions & 164 deletions
Large diffs are not rendered by default.

machines/asgard/boot.nix

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{
49
boot = {
@@ -26,7 +31,15 @@
2631
extraModulePackages = with config.boot.kernelPackages; [ ];
2732

2833
initrd = {
29-
availableKernelModules = [ "ahci" "ehci_pci" "ohci_pci" "pata_atiixp" "sd_mod" "usb_storage" "usbhid" ];
34+
availableKernelModules = [
35+
"ahci"
36+
"ehci_pci"
37+
"ohci_pci"
38+
"pata_atiixp"
39+
"sd_mod"
40+
"usb_storage"
41+
"usbhid"
42+
];
3043
kernelModules = [ "dm-snapshot" ];
3144
};
3245
};

machines/asgard/default.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{
49
imports = [

machines/asgard/extras.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{ }

machines/asgard/hardware.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
{ config, lib, pkgs, modulesPath, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
modulesPath,
6+
...
7+
}:
28

39
{
410
imports = [

machines/asgard/networking.nix

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{
49
networking = {
@@ -14,10 +19,12 @@
1419
interfaces = {
1520
eth0 = {
1621
ipv4 = {
17-
addresses = [{
18-
address = "192.168.1.10";
19-
prefixLength = 24;
20-
}];
22+
addresses = [
23+
{
24+
address = "192.168.1.10";
25+
prefixLength = 24;
26+
}
27+
];
2128
};
2229
};
2330
};

machines/utgard/boot.nix

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{
49
boot = {
@@ -27,11 +32,23 @@
2732
};
2833
};
2934

30-
kernelModules = [ "kvm-intel" "wl" ];
35+
kernelModules = [
36+
"kvm-intel"
37+
"wl"
38+
];
3139
extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ];
3240

3341
initrd = {
34-
availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "firewire_ohci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
42+
availableKernelModules = [
43+
"uhci_hcd"
44+
"ehci_pci"
45+
"ahci"
46+
"firewire_ohci"
47+
"usbhid"
48+
"usb_storage"
49+
"sd_mod"
50+
"sdhci_pci"
51+
];
3552
kernelModules = [ "dm-snapshot" ];
3653
};
3754
};

machines/utgard/default.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{
49
imports = [

machines/utgard/extras.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
{ config, lib, pkgs, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
...
6+
}:
27

38
{ }

machines/utgard/hardware.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
{ config, lib, pkgs, modulesPath, ... }:
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
modulesPath,
6+
...
7+
}:
28

39
{
410
imports = [

0 commit comments

Comments
 (0)