Skip to content

Commit 72fd6be

Browse files
committed
tree-wide: nix fmt
1 parent 0d2758e commit 72fd6be

1 file changed

Lines changed: 20 additions & 16 deletions

File tree

flake.nix

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -89,22 +89,26 @@
8989
nixostest = self.inputs.nixpkgs.lib.nixosSystem {
9090
system = "x86_64-linux";
9191
modules = [
92-
({ config, pkgs, ... }: {
93-
imports = [ ];
94-
95-
boot.loader.systemd-boot.enable = true;
96-
boot.loader.efi.canTouchEfiVariables = true;
97-
98-
fileSystems."/" = {
99-
device = "/dev/sda1";
100-
fsType = "ext4";
101-
};
102-
103-
networking.hostName = "nixostest";
104-
services.openssh.enable = true;
105-
users.users.root.initialPassword = "changeme";
106-
system.stateVersion = "25.05";
107-
})
92+
({
93+
config,
94+
pkgs,
95+
...
96+
}: {
97+
imports = [];
98+
99+
boot.loader.systemd-boot.enable = true;
100+
boot.loader.efi.canTouchEfiVariables = true;
101+
102+
fileSystems."/" = {
103+
device = "/dev/sda1";
104+
fsType = "ext4";
105+
};
106+
107+
networking.hostName = "nixostest";
108+
services.openssh.enable = true;
109+
users.users.root.initialPassword = "changeme";
110+
system.stateVersion = "25.05";
111+
})
108112
];
109113
};
110114
};

0 commit comments

Comments
 (0)