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

36 lines
773 B
Nix
Raw Normal View History

2019-06-17 17:03:57 +02:00
{ config, pkgs, lib, ... }:
2019-06-15 15:04:13 +02:00
{
2019-06-15 17:50:02 +02:00
imports = [
<configs/default.nix>
./hardware-configuration.nix
<stockholm/krebs/2configs/hw/x220.nix>
];
2019-06-15 15:04:13 +02:00
niveum = {
batteryBlocks.default = "BAT0";
networkInterfaces.wireless = "wlp3s0";
promptColours.success = "cyan";
};
2019-07-02 21:24:18 +02:00
boot.extraModulePackages = with config.boot.kernelPackages; [ tp_smapi acpi_call ];
boot.kernelModules = [ "tp_smapi" "acpi_call" ];
2019-08-18 11:18:01 +02:00
environment.systemPackages = [ pkgs.tpacpi-bat pkgs.minecraft ];
2019-07-02 21:24:18 +02:00
2019-06-17 17:03:57 +02:00
virtualisation.docker.enable = lib.mkForce false;
boot.loader.systemd-boot = {
enable = true;
configurationLimit = 5;
consoleMode = "max";
};
2019-06-15 15:04:13 +02:00
boot.loader.efi.canTouchEfiVariables = true;
2019-06-15 17:50:02 +02:00
networking.hostName = "wilde";
2019-06-15 15:04:13 +02:00
2019-06-15 17:50:02 +02:00
system.stateVersion = "19.03";
2019-06-15 15:04:13 +02:00
}