Re-format with nixpkgs-fmt
1 file changed, 14 insertions(+), 15 deletions(-)
changed files
M system/prefect.nix → system/prefect.nix
@@ -1,10 +1,9 @@ -{ - config, - pkgs, - nixpkgs, - nixpkgs-unstable, - nixos-hardware, - ... +{ config +, pkgs +, nixpkgs +, nixpkgs-unstable +, nixos-hardware +, ... }: { imports = [ (nixos-hardware + "/common/pc/ssd")@@ -61,15 +60,15 @@ boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower ]; - boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "sd_mod"]; - boot.initrd.kernelModules = []; - boot.kernelModules = ["kvm-amd"]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; fileSystems = { "/" = { device = "/dev/disk/by-partlabel/nixos-root"; fsType = "f2fs"; - options = ["atgc" "gc_merge" "lazytime" "nodiscard"]; + options = [ "atgc" "gc_merge" "lazytime" "nodiscard" ]; }; "/boot" = {@@ -80,25 +79,25 @@ "/home" = { device = "/dev/disk/by-partlabel/home"; fsType = "ext4"; - options = ["lazytime" "nodiscard"]; + options = [ "lazytime" "nodiscard" ]; }; "/mnt/data" = { device = "/dev/disk/by-partlabel/data"; fsType = "ntfs3"; - options = ["uid=1000" "gid=100" "x-systemd-automount" "nofail"]; + options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ]; }; "/mnt/games" = { device = "/dev/disk/by-partlabel/games"; fsType = "ntfs3"; - options = ["uid=1000" "gid=100" "x-systemd-automount" "nofail"]; + options = [ "uid=1000" "gid=100" "x-systemd-automount" "nofail" ]; }; "/mnt/windows" = { device = "/dev/disk/by-partlabel/windows"; fsType = "ntfs3"; - options = ["x-systemd-automount" "nofail"]; + options = [ "x-systemd-automount" "nofail" ]; }; };