mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 17:26:34 +01:00
Chnge filesystems
This commit is contained in:
parent
804d430a19
commit
a3c2b97992
1 changed files with 12 additions and 3 deletions
|
@ -26,10 +26,19 @@
|
|||
zramSwap.enable = true;
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
# "/" = {
|
||||
# device = "/dev/disk/by-uuid/99a47ace-7e69-4520-b914-d4fe5b31dc79";
|
||||
# fsType = "btrfs";
|
||||
# options = [ "subvol=@" "compress=zstd:8" ];
|
||||
#};
|
||||
"/" = {
|
||||
device = "none";
|
||||
fsType = "tmpfs";
|
||||
options = [ "size=4G" "mode=755" ]; # mode=755 so only root can write to those files
|
||||
};
|
||||
"/nix" = {
|
||||
device = "/dev/disk/by-uuid/99a47ace-7e69-4520-b914-d4fe5b31dc79";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@" "compress=zstd:8" ];
|
||||
fsType = "bcachefs";
|
||||
};
|
||||
"/boot/efi" = {
|
||||
device = "/dev/disk/by-uuid/1F26-8168";
|
||||
|
|
Loading…
Reference in a new issue