2020-11-05 21:28:23 +01:00
|
|
|
{
|
2022-03-10 21:52:12 +01:00
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: let
|
|
|
|
|
inherit (import <niveum/lib>) retiolumAddresses;
|
|
|
|
|
in {
|
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
2020-11-05 21:28:23 +01:00
|
|
|
./hardware-configuration.nix
|
2021-12-29 18:49:51 +01:00
|
|
|
./hdmi.nix
|
2020-11-05 21:28:23 +01:00
|
|
|
<niveum/configs/default.nix>
|
2021-02-28 08:01:51 +01:00
|
|
|
<niveum/configs/battery.nix>
|
2021-09-17 11:12:23 +02:00
|
|
|
<niveum/configs/wpa_supplicant.nix>
|
2020-11-05 21:28:23 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
niveum = {
|
|
|
|
|
batteryName = "BAT0";
|
|
|
|
|
wirelessInterface = "wlp3s0";
|
2021-04-17 09:27:49 +02:00
|
|
|
promptColours.success = "green";
|
2020-11-05 21:28:23 +01:00
|
|
|
};
|
|
|
|
|
|
2021-12-29 18:49:51 +01:00
|
|
|
networking = {
|
|
|
|
|
useDHCP = false;
|
|
|
|
|
interfaces = {
|
|
|
|
|
enp0s25.useDHCP = true;
|
|
|
|
|
wlp3s0.useDHCP = true;
|
|
|
|
|
wwp0s20u4i6.useDHCP = true;
|
|
|
|
|
};
|
2022-03-10 21:52:12 +01:00
|
|
|
wireless.interfaces = ["wlp3s0"];
|
2021-12-29 18:49:51 +01:00
|
|
|
retiolum = retiolumAddresses.manakish;
|
2021-12-31 15:56:20 +01:00
|
|
|
hostName = "manakish";
|
2020-11-05 21:28:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
system.stateVersion = "20.09"; # Did you read the comment?
|
|
|
|
|
}
|