Initial commit

This commit is contained in:
stubbfel
2017-11-17 02:11:40 +01:00
commit 7c7689ef25
13 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# 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/profiles/qemu-guest.nix>
];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/fecfee3f-e48a-405f-9a3e-7de8d1e3b31d";
fsType = "ext4";
};
swapDevices = [ ];
nix.maxJobs = lib.mkDefault 6;
}