chore: run nixpkgs-fmt

This commit is contained in:
Veneficium 2024-09-01 14:59:48 +02:00
parent ce814cac82
commit b41bce8ce2
10 changed files with 22 additions and 19 deletions

View file

@ -19,7 +19,8 @@
];
config = { allowUnfree = true; };
};
in {
in
{
nixosConfigurations = {
fedfer-main-laptop-nixos = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";

View file

@ -1,7 +1,8 @@
{ pkgs, lib, ... }: {
imports =
[ # Include the results of the hardware scan.
[
# Include the results of the hardware scan.
./hardware-configuration.nix
../../nixosModules/default.nix
];

View file

@ -5,7 +5,8 @@
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
[
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "vmd" "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
@ -14,12 +15,14 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/58d4396b-d87c-419b-ac35-c4d282ef05b1";
{
device = "/dev/disk/by-uuid/58d4396b-d87c-419b-ac35-c4d282ef05b1";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/F5D9-1046";
{
device = "/dev/disk/by-uuid/F5D9-1046";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};

View file

@ -1,6 +1,4 @@
{ lib, pkgs, ... }:
{
{ lib, pkgs, ... }: {
imports =
[
./hardware-configuration.nix