Skip to content

Instantly share code, notes, and snippets.

@expipiplus1
Created June 3, 2018 12:02
Show Gist options
  • Save expipiplus1/831a41086e08ce3ce27a3d0068504512 to your computer and use it in GitHub Desktop.
Save expipiplus1/831a41086e08ce3ce27a3d0068504512 to your computer and use it in GitHub Desktop.
# Do not modify this file! It was generated by ‘nixos-generate-config’
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, ... }:
{
imports =
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
];
boot.initrd.availableKernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
fileSystems."/nix/store" =
{ device = "/nix/store";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/2178-694E";
fsType = "vfat";
};
swapDevices =
[ { device = "/root/swapfile"; }
];
nix.maxJobs = lib.mkDefault 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment