1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/homeros/configuration.nix
2019-08-18 11:18:01 +02:00

31 lines
661 B
Nix

{ config, pkgs, ... }:
{
imports = [
<configs/default.nix>
./hardware-configuration.nix
];
services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ];
environment.systemPackages = [ pkgs.unstable.zeroad pkgs.minecraft ];
niveum = {
networkInterfaces.wireless = "wlp3s0";
promptColours.success = "green";
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelParams = [
"acpi_backlight=none"
"acpi_backlight=video"
"acpi_backlight=vendor"
"acpi_backlight=native"
];
networking.hostName = "homeros";
system.stateVersion = "19.03";
}