mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
23 lines
430 B
Nix
23 lines
430 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
<configs/default.nix>
|
|
{
|
|
services.xserver.xrandrHeads = [ "eDP1" ];
|
|
}
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
niveum = {
|
|
networkInterfaces.wireless = "wlp2s0";
|
|
promptColours.success = "yellow";
|
|
};
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "scardanelli";
|
|
|
|
system.stateVersion = "19.03";
|
|
}
|