Apply nixfmt

This commit is contained in:
Fabian Hauser 2021-05-03 15:05:10 +02:00
parent 07bd394a43
commit 8f56cf5a99
3 changed files with 20 additions and 27 deletions

View file

@ -1,25 +1,26 @@
{ config, pkgs, lib, ... }: {
boot.initrd.luks.devices.system.device = "/dev/disk/by-uuid/bf353bb1-43bf-453f-ae7e-0fa9b4d8778c";
boot.initrd.luks.devices.system.device =
"/dev/disk/by-uuid/bf353bb1-43bf-453f-ae7e-0fa9b4d8778c";
boot.initrd.kernelModules = [ "dm-snapshot" ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/661ad230-72da-4326-bb3a-4965006475f8";
fsType = "btrfs";
options = [ "subvol=nixos" ];
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/661ad230-72da-4326-bb3a-4965006475f8";
fsType = "btrfs";
options = [ "subvol=nixos" ];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/661ad230-72da-4326-bb3a-4965006475f8";
fsType = "btrfs";
options = [ "subvol=home" ];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/661ad230-72da-4326-bb3a-4965006475f8";
fsType = "btrfs";
options = [ "subvol=home" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/A5C5-1372";
fsType = "vfat";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/A5C5-1372";
fsType = "vfat";
};
swapDevices = [];
swapDevices = [ ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;