mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:16:33 +01:00
Add zfs drive to mount
This commit is contained in:
parent
c7d1a89080
commit
c358cb2c09
1 changed files with 4 additions and 2 deletions
|
@ -25,8 +25,6 @@
|
||||||
|
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = true;
|
||||||
|
|
||||||
boot.supportedFilesystems = ["zfs"];
|
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/disk/by-uuid/99a47ace-7e69-4520-b914-d4fe5b31dc79";
|
device = "/dev/disk/by-uuid/99a47ace-7e69-4520-b914-d4fe5b31dc79";
|
||||||
|
@ -46,6 +44,10 @@
|
||||||
fsType = "ntfs";
|
fsType = "ntfs";
|
||||||
options = [ "rw" "uid=1000"];
|
options = [ "rw" "uid=1000"];
|
||||||
};
|
};
|
||||||
|
"/media/zfs" = {
|
||||||
|
device = "jopejoe1";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
Loading…
Reference in a new issue