Skip to content

Instantly share code, notes, and snippets.

@samueldr
Created October 16, 2017 02:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueldr/2b72f39c292f00f9fd42d94e57e50ced to your computer and use it in GitHub Desktop.
Save samueldr/2b72f39c292f00f9fd42d94e57e50ced to your computer and use it in GitHub Desktop.
{ config, lib, pkgs, ... }:
{
fileSystems."/" =
{ device = "/dev/disk/by-id/ata-ADATA_SU800_2G4720081012-part1";
fsType = "ext4";
};
swapDevices = [
{
device = "/var/swapfile";
size = 8192;
}
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment