1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 02:51:08 +01:00
Files
niveum/systems/manakish/configuration.nix

37 lines
761 B
Nix
Raw Normal View History

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
./hdmi.nix
2020-11-05 21:28:23 +01:00
<niveum/configs/default.nix>
<niveum/configs/battery.nix>
<niveum/configs/wpa_supplicant.nix>
2020-11-05 21:28:23 +01:00
];
niveum = {
batteryName = "BAT0";
wirelessInterface = "wlp3s0";
promptColours.success = "green";
2020-11-05 21:28:23 +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"];
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?
}