1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/scardanelli/configuration.nix
2019-06-17 19:11:31 +02:00

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