mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 17:16:35 +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;
|
||||
|
||||
boot.supportedFilesystems = ["zfs"];
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-uuid/99a47ace-7e69-4520-b914-d4fe5b31dc79";
|
||||
|
@ -46,6 +44,10 @@
|
|||
fsType = "ntfs";
|
||||
options = [ "rw" "uid=1000"];
|
||||
};
|
||||
"/media/zfs" = {
|
||||
device = "jopejoe1";
|
||||
fsType = "zfs";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
|
Loading…
Reference in a new issue