remove nixpkgs dependency from xps9360 config

auto-flake-update
Yorick van Pelt 2018-03-22 17:31:19 +01:00
parent 7278e87bc1
commit 134fa178d4
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
imports = [ imports = [
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
./. ./.
]; ];
hardware.yorick = { cpu = "intel"; gpu = "intel"; laptop = true; }; hardware.yorick = { cpu = "intel"; gpu = "intel"; laptop = true; };
hardware.enableRedistributableFirmware = true; # needed?
boot = { boot = {
loader = { loader = {
@ -40,7 +41,7 @@
]; ];
nix.maxJobs = lib.mkDefault 4; nix.maxJobs = lib.mkDefault 4;
# bigger console font # bigger console font
i18n.consoleFont = "latarcyrheb-sun32"; i18n.consoleFont = "latarcyrheb-sun32";
} }