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

36 lines
746 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2019-04-19 03:11:51 +02:00
imports = [
2019-10-26 13:43:30 +02:00
<niveum/configs/default.nix>
2019-04-19 03:11:51 +02:00
./hardware-configuration.nix
];
2020-01-06 22:20:35 +01:00
services.xserver.xrandrHeads = [ { output = "HDMI1"; primary = true; } "LVDS1" ];
2019-08-18 11:18:01 +02:00
environment.systemPackages = [ pkgs.unstable.zeroad pkgs.minecraft ];
niveum = {
batteryBlocks.default = "BAT1";
networkInterfaces.wireless = "wlp3s0";
promptColours.success = "green";
};
boot.loader.systemd-boot = {
enable = true;
configurationLimit = 5;
};
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-11-05 21:58:49 +01:00
system.stateVersion = "18.09";
}