1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/kabsa/configuration.nix
Kierán Meinhardt 93dd8bd702 fix: less unstable, nixpkgs via krops git, NIX_PATH on makanek
systems wanted to build glibc all the time when updated
2022-02-15 22:16:50 +01:00

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";
}