mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
34 lines
629 B
Nix
34 lines
629 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
inherit (import <niveum/lib>) retiolumAddresses;
|
|
in
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
<niveum/configs/battery.nix>
|
|
<niveum/configs/default.nix>
|
|
<niveum/configs/networkmanager.nix>
|
|
];
|
|
|
|
niveum = {
|
|
batteryName = "BAT0";
|
|
wirelessInterface = "wlp3s0";
|
|
promptColours.success = "cyan";
|
|
};
|
|
|
|
nix = {
|
|
buildCores = 1;
|
|
maxJobs = 2;
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.minecraft ];
|
|
|
|
networking = {
|
|
hostName = "kabsa";
|
|
wireless.interfaces = [ "wlp3s0" ];
|
|
retiolum = retiolumAddresses.kabsa;
|
|
};
|
|
|
|
system.stateVersion = "19.03";
|
|
}
|