Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion systems/classic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Partition disk
js.disks.enable = true;
js.disks.device = "/dev/sda";
js.disks.device = "/dev/nvme0n1";
js.disks.swap.enable = true;

# Create shared dir for game roms
Expand All @@ -16,6 +16,20 @@
mountpoint = "/media";
};*/

# Mount shared dir for game roms
# This is a manually-created btrfs subvolume
# btrfs create /media/SHARE
#fileSystems."/media/SHARE" = {
# device = "/dev/nvme0n1p3";
# fsType = "btrfs";
# options = [
# "subvol=media/SHARE"
# "compress=zstd"
# "noatime"
# "noacl"
# ];
#};

# Enable Intel CPU support
js.hardware.intel.cpu.enable = true;

Expand Down
Loading