Skip to content

Commit

Permalink
Auto lint/format
Browse files Browse the repository at this point in the history
  • Loading branch information
truxnell authored and github-actions[bot] committed Mar 26, 2024
1 parent 42f484a commit f41a6b7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 13 deletions.
4 changes: 2 additions & 2 deletions nixos/hosts/citadel/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@

networking.hostName = "citadel"; # Define your hostname.

# Enable OpenGL
# Enable OpenGL
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};

# Load nvidia driver for Xorg and Wayland
services.xserver.videoDrivers = ["nvidia"]; # or "nvidiaLegacy470 etc.
services.xserver.videoDrivers = [ "nvidia" ]; # or "nvidiaLegacy470 etc.

hardware.nvidia = {

Expand Down
9 changes: 6 additions & 3 deletions nixos/hosts/citadel/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
[
(modulesPath + "/installer/scan/not-detected.nix")
];

boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
Expand All @@ -14,12 +15,14 @@
boot.extraModulePackages = [ ];

fileSystems."/" =
{ device = "/dev/disk/by-uuid/701fc943-ede7-41ed-8a53-3cc38fc68fe5";
{
device = "/dev/disk/by-uuid/701fc943-ede7-41ed-8a53-3cc38fc68fe5";
fsType = "ext4";
};

fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/C634-F571";
{
device = "/dev/disk/by-uuid/C634-F571";
fsType = "vfat";
};

Expand Down
3 changes: 1 addition & 2 deletions nixos/hosts/common/nixos/openssh.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{...
}:
_:

{

Expand Down
2 changes: 1 addition & 1 deletion nixos/hosts/common/optional/editors/vscode/extensions.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Warning, this file is autogenerated by nix4vscode. Don't modify this manually.
{ pkgs }:
let
vscode-utils = pkgs.vscode-utils;
inherit (pkgs) vscode-utils;
in
{
"ms-python"."python" = vscode-utils.extensionFromVscodeMarketplace {
Expand Down
6 changes: 4 additions & 2 deletions nixos/hosts/dns01/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
[
(modulesPath + "/installer/scan/not-detected.nix")
];

boot.initrd.availableKernelModules = [ "xhci_pci" "usb_storage" ];
Expand All @@ -14,7 +15,8 @@
boot.extraModulePackages = [ ];

fileSystems."/" =
{ device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
{
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};

Expand Down
9 changes: 6 additions & 3 deletions nixos/hosts/rickenbacker/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
[
(modulesPath + "/installer/scan/not-detected.nix")
];

boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
Expand All @@ -14,12 +15,14 @@
boot.extraModulePackages = [ ];

fileSystems."/" =
{ device = "/dev/disk/by-uuid/fe728106-aaf8-46e6-ab46-1610f1f4398a";
{
device = "/dev/disk/by-uuid/fe728106-aaf8-46e6-ab46-1610f1f4398a";
fsType = "ext4";
};

fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/44D0-91EC";
{
device = "/dev/disk/by-uuid/44D0-91EC";
fsType = "vfat";
};

Expand Down

0 comments on commit f41a6b7

Please sign in to comment.