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

34 lines
629 B
Nix
Raw Normal View History

2019-06-17 17:03:57 +02:00
{ config, pkgs, lib, ... }:
2020-10-28 20:25:26 +01:00
let
inherit (import <niveum/lib>) retiolumAddresses;
2020-10-28 20:25:26 +01:00
in
2019-06-15 15:04:13 +02:00
{
2019-06-15 17:50:02 +02:00
imports = [
./hardware-configuration.nix
<niveum/configs/battery.nix>
<niveum/configs/default.nix>
<niveum/configs/networkmanager.nix>
2019-06-15 17:50:02 +02:00
];
2019-06-15 15:04:13 +02:00
niveum = {
batteryName = "BAT0";
wirelessInterface = "wlp3s0";
promptColours.success = "cyan";
};
nix = {
buildCores = 1;
maxJobs = 2;
};
environment.systemPackages = [ pkgs.minecraft ];
2020-01-24 08:59:40 +01:00
networking = {
hostName = "kabsa";
wireless.interfaces = [ "wlp3s0" ];
retiolum = retiolumAddresses.kabsa;
};
2019-11-05 21:58:49 +01:00
system.stateVersion = "19.03";
2019-06-15 15:04:13 +02:00
}