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

22 lines
415 B
Nix

{ config, pkgs, ... }:
{
imports = [
<configs/default.nix>
./hardware-configuration.nix
];
services.xserver.xrandrHeads = [ "eDP1" ];
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";
}