Created
June 3, 2018 12:02
-
-
Save expipiplus1/831a41086e08ce3ce27a3d0068504512 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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