root on tmpfs, /nix and others on bcachefs

this was not worth the effort
This commit is contained in:
LavaDesu 2021-05-15 08:25:24 +07:00
parent 4df3f373e9
commit 6a734d36f7
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 45 additions and 5 deletions

View file

@ -8,14 +8,15 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" "bcachefs" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/25ffa0da-054d-4906-84aa-1625f94b0cf2"; { device = "none";
fsType = "ext4"; fsType = "tmpfs";
options = [ "defaults" "size=4G" "mode=755" ];
}; };
fileSystems."/boot" = fileSystems."/boot" =
@ -23,12 +24,47 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/mnt/bcachefs" =
{ device = "/dev/sda2";
fsType = "bcachefs";
neededForBoot = true;
};
fileSystems."/nix" =
{ device = "/mnt/bcachefs/binds/nix";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/home" =
{ device = "/mnt/bcachefs/binds/home";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/var" =
{ device = "/mnt/bcachefs/binds/var";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/root" =
{ device = "/mnt/bcachefs/binds/root";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/etc/nixos" =
{ device = "/mnt/bcachefs/binds/etc_nixos";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/mnt/hdd" = fileSystems."/mnt/hdd" =
{ device = "/dev/disk/by-uuid/d5e3cfe5-c73a-4695-b81b-fc0215d4cefe"; { device = "/dev/disk/by-uuid/d5e3cfe5-c73a-4695-b81b-fc0215d4cefe";
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = []; swapDevices = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
} }

View file

@ -2,6 +2,8 @@
networking.hostName = "winter"; networking.hostName = "winter";
system.stateVersion = "20.09"; system.stateVersion = "20.09";
environment.etc."machine-id".source = "/mnt/bcachefs/machine-id";
imports = [ imports = [
./gui.nix ./gui.nix
./hardware-configuration.nix ./hardware-configuration.nix
@ -31,10 +33,12 @@
sound.enable = true; sound.enable = true;
hardware.pulseaudio.enable = true; hardware.pulseaudio.enable = true;
users.mutableUsers = false;
users.users.lava = { users.users.lava = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
shell = pkgs.zsh; shell = pkgs.zsh;
initialPassword = "gaming";
}; };
console.useXkbConfig = true; console.useXkbConfig = true;