wg
This commit is contained in:
parent
8797449080
commit
1f4ce3887e
2 changed files with 66 additions and 42 deletions
|
|
@ -1,19 +1,30 @@
|
|||
# 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, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||
boot.initrd.availableKernelModules = [
|
||||
"xhci_pci"
|
||||
"nvme"
|
||||
"usb_storage"
|
||||
"sd_mod"
|
||||
"sdhci_pci"
|
||||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "tmpfs";
|
||||
fileSystems."/" = {
|
||||
device = "tmpfs";
|
||||
fsType = "tmpfs";
|
||||
options = [
|
||||
"defaults"
|
||||
|
|
@ -28,31 +39,45 @@
|
|||
options = [ "umask=0077" ];
|
||||
};
|
||||
|
||||
fileSystems."/persist/data" =
|
||||
{ device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fileSystems."/persist/data" = {
|
||||
device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fsType = "btrfs";
|
||||
neededForBoot = true;
|
||||
options = [ "subvol=@data" "noatime" "compress=zstd" ];
|
||||
options = [
|
||||
"subvol=@data"
|
||||
"noatime"
|
||||
"compress=zstd"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/persist/cache" =
|
||||
{ device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fileSystems."/persist/cache" = {
|
||||
device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fsType = "btrfs";
|
||||
neededForBoot = true;
|
||||
options = [ "subvol=@cache" "noatime" "compress=zstd" ];
|
||||
options = [
|
||||
"subvol=@cache"
|
||||
"noatime"
|
||||
"compress=zstd"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fsType = "btrfs";
|
||||
neededForBoot = true;
|
||||
options = [ "subvol=@nix" "noatime" "compress=zstd" ];
|
||||
options = [
|
||||
"subvol=@nix"
|
||||
"noatime"
|
||||
"compress=zstd"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/swap" =
|
||||
{ device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fileSystems."/swap" = {
|
||||
device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@swap" "noatime" ];
|
||||
options = [
|
||||
"subvol=@swap"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
|
|
|
|||
|
|
@ -59,7 +59,6 @@
|
|||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-uuid/5dbe939d-54a5-4092-b9c6-83f6bd4cf925";
|
||||
fsType = "btrfs";
|
||||
neededForBoot = true;
|
||||
options = [
|
||||
"noatime"
|
||||
"compress=zstd"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue