fmt
This commit is contained in:
parent
e6c5e39542
commit
d4f1d7543c
8 changed files with 133 additions and 130 deletions
|
@ -48,7 +48,7 @@ in
|
|||
time.timeZone = "Europe/Berlin";
|
||||
time.hardwareClockInLocalTime = true; #Be compatible with Windows
|
||||
|
||||
|
||||
|
||||
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
||||
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
||||
# replicates the default behaviour.
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
|
||||
|
@ -14,7 +15,8 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/60e06bf9-f4c4-4555-879b-23ade6599704";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/60e06bf9-f4c4-4555-879b-23ade6599704";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
|
@ -32,7 +34,8 @@
|
|||
[ "${automount_opts},credentials=/etc/nixos/smb-secrets" ];
|
||||
};
|
||||
fileSystems."/boot/efi" =
|
||||
{ device = "/dev/disk/by-uuid/274B-0F7C";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/274B-0F7C";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue