2021-05-11 14:32:58 +07:00
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
imports =
|
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
|
];
|
|
|
|
|
|
|
2021-05-30 11:00:59 +07:00
|
|
|
|
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
|
2021-05-11 14:32:58 +07:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2021-05-30 11:00:59 +07:00
|
|
|
|
{ device = "rootfs";
|
2021-05-15 08:25:24 +07:00
|
|
|
|
fsType = "tmpfs";
|
|
|
|
|
|
options = [ "defaults" "size=4G" "mode=755" ];
|
2021-05-11 14:32:58 +07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/E8E8-E570";
|
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-05-30 11:00:59 +07:00
|
|
|
|
fileSystems."/mnt/butter" =
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/8f0ba28e-5dff-4a4e-8db0-aa72cc90cb5d";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
options = [ "autodefrag" "compress=zstd:3" "nossd" "nossd_spread" "relatime" "subvolid=5" ];
|
2021-05-15 08:25:24 +07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
2021-05-30 11:00:59 +07:00
|
|
|
|
{ device = "/dev/disk/by-uuid/8f0ba28e-5dff-4a4e-8db0-aa72cc90cb5d";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
options = [ "autodefrag" "compress=zstd:3" "nossd" "nossd_spread" "relatime" "subvolid=258" ];
|
2021-05-15 08:25:24 +07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
2021-05-30 11:00:59 +07:00
|
|
|
|
{ device = "/dev/disk/by-uuid/8f0ba28e-5dff-4a4e-8db0-aa72cc90cb5d";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
options = [ "autodefrag" "compress=zstd:3" "nossd" "nossd_spread" "relatime" "subvolid=260" ];
|
2021-05-15 08:25:24 +07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/root" =
|
2021-05-30 11:00:59 +07:00
|
|
|
|
{ device = "/dev/disk/by-uuid/8f0ba28e-5dff-4a4e-8db0-aa72cc90cb5d";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
options = [ "autodefrag" "compress=zstd:3" "nossd" "nossd_spread" "relatime" "subvolid=261" ];
|
2021-05-15 08:25:24 +07:00
|
|
|
|
};
|
|
|
|
|
|
|
2021-05-30 11:00:59 +07:00
|
|
|
|
fileSystems."/var" =
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/8f0ba28e-5dff-4a4e-8db0-aa72cc90cb5d";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
options = [ "autodefrag" "compress=zstd:3" "nossd" "nossd_spread" "relatime" "subvolid=259" ];
|
2021-05-15 08:25:24 +07:00
|
|
|
|
};
|
|
|
|
|
|
|
2021-05-11 14:32:58 +07:00
|
|
|
|
fileSystems."/mnt/hdd" =
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/d5e3cfe5-c73a-4695-b81b-fc0215d4cefe";
|
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-05-15 08:25:24 +07:00
|
|
|
|
swapDevices = [ ];
|
2021-05-11 14:32:58 +07:00
|
|
|
|
}
|