Skip to content

Instantly share code, notes, and snippets.

@adrianparvino
Created August 19, 2018 12:52
Show Gist options
  • Save adrianparvino/db59297032dfa14c99ffa25bd07ef73d to your computer and use it in GitHub Desktop.
Save adrianparvino/db59297032dfa14c99ffa25bd07ef73d to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
{
imports = [ /etc/nixos/hardware-configuration.nix ];
boot = {
kernelParams = [ "quiet" "splash" "acpi_osi=Linux" ];
loader = {
systemd-boot.enable = true;
timeout = 2;
efi.canTouchEfiVariables = true;
};
};
environment.systemPackages = pkgs.return-empty [];
networking.hostId = "a8c06502";
nixpkgs.config.packageOverrides = pkgs: {
return-empty = import ./return-empty.nix { inherit pkgs; };
id = import ./id.nix { inherit pkgs; };
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment