diff options
Diffstat (limited to '1systems')
| -rw-r--r-- | 1systems/makefu/pnp.nix | 38 | 
1 files changed, 38 insertions, 0 deletions
| diff --git a/1systems/makefu/pnp.nix b/1systems/makefu/pnp.nix index e69de29bb..51f5bb00c 100644 --- a/1systems/makefu/pnp.nix +++ b/1systems/makefu/pnp.nix @@ -0,0 +1,38 @@ +# Edit this configuration file to define what should be installed on +# your system.  Help is available in the configuration.nix(5) man page +# and in the NixOS manual (accessible by running ‘nixos-help’). + +{ config, pkgs, ... }: + +{ +    imports = +        [ # Include the results of the hardware scan. +        <nixpkgs/nixos/modules/profiles/qemu-guest.nix> +        ../../2configs/makefu/base.nix +        ]; +    boot.loader.grub.enable = true; +    boot.loader.grub.version = 2; +    boot.loader.grub.device = "/dev/vda"; + +    boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "ehci_pci" "virtio_pci" "virtio_blk" ]; +    boot.kernelModules = [ ]; +    boot.extraModulePackages = [ ]; +    hardware.enableAllFirmware = true; +    hardware.cpu.amd.updateMicrocode = true; + +    fileSystems."/" = +    { device = "/dev/disk/by-label/nixos"; +        fsType = "ext4"; +    }; + +    nix.maxJobs = 1; +    networking.hostName = "pnp"; # Define your hostname. + +# $ nix-env -qaP | grep wget +    environment.systemPackages = with pkgs; [ +        wget +        git +        gnumake +    ]; + +} | 
