mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:06:51 +01:00
fix btrfs mount
This commit is contained in:
parent
f960ece240
commit
3c50a53d9b
1 changed files with 3 additions and 2 deletions
|
@ -26,11 +26,12 @@
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/nvme1n1p2";
|
device = "/dev/disk/by-uuid/ec151a68-5886-4747-b5e3-2f9bdb89e162";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=@" ];
|
||||||
};
|
};
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/nvme1n1p1";
|
device = "/dev/disk/by-uuid/8EED-43E3";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
"/media/gaming" = {
|
"/media/gaming" = {
|
||||||
|
|
Loading…
Reference in a new issue