Satori: misc changes

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2022-10-14 09:57:57 +05:30
parent c9879b147d
commit 994a22a6da
6 changed files with 41 additions and 29 deletions

View File

@@ -5,30 +5,36 @@
[
(modulesPath + "/installer/scan/not-detected.nix")
];
fileSystems."/" =
{
device = "/dev/disk/by-uuid/4c02ddf5-d00e-4d84-856f-c327ae44d047";
{ device = "/dev/disk/by-uuid/4c02ddf5-d00e-4d84-856f-c327ae44d047";
fsType = "btrfs";
options = [ "compress-force=zstd:3" ];
};
fileSystems."/boot/efi" =
{
device = "/dev/disk/by-uuid/2424-5639";
{ device = "/dev/disk/by-uuid/2424-5639";
fsType = "vfat";
};
fileSystems."/mnt/Games" =
{
device = "/dev/disk/by-uuid/A4CC66B6CC668282";
fileSystems."/mnt/ntfs" =
{ device = "/dev/disk/by-uuid/A4CC66B6CC668282";
fsType = "ntfs";
options = [ "uid=natto" "gid=users" "umask=0022" "rw" ];
};
fileSystems."/mnt/Stuff" =
{
device = "/dev/disk/by-uuid/e5be3621-8608-4ffe-bd33-5e6d22fef4ff";
fsType = "btrfs";
options = [ "compress-force=zstd:3" ];
fileSystems."/mnt/real" =
{ device = "/dev/disk/by-uuid/6372bc0c-0917-469d-a845-2ce65513e306";
fsType = "ext4";
options = [ "rw" ];
};
fileSystems."/mnt/stuff" =
{ device = "stuff";
fsType = "zfs";
neededForBoot = false;
};
zramSwap = {
enable = true;
algorithm = "lz4";