Created
August 19, 2018 12:52
-
-
Save adrianparvino/db59297032dfa14c99ffa25bd07ef73d 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
{ 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