1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 19:41:08 +01:00
Files
niveum/systems/homeros/configuration.nix

31 lines
661 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2019-04-19 03:11:51 +02:00
imports = [
2019-04-22 22:40:41 +02:00
<configs/default.nix>
2019-04-19 03:11:51 +02:00
./hardware-configuration.nix
];
services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ];
2019-08-18 11:18:01 +02:00
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;
2019-06-15 17:50:57 +02:00
boot.kernelParams = [
"acpi_backlight=none"
"acpi_backlight=video"
"acpi_backlight=vendor"
"acpi_backlight=native"
];
networking.hostName = "homeros";
2019-05-15 18:21:58 +02:00
system.stateVersion = "19.03";
}