44 lines
575 B
Nix
44 lines
575 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../modules
|
||
|
];
|
||
|
|
||
|
riley = {
|
||
|
gui = true;
|
||
|
ide = true;
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "loki";
|
||
|
interfaces.wlp6s0.useDHCP = true;
|
||
|
};
|
||
|
|
||
|
devices = {
|
||
|
audio = {
|
||
|
|
||
|
speakers = "";
|
||
|
external = "";
|
||
|
headset = "";
|
||
|
|
||
|
# Inputs
|
||
|
main-mic = "";
|
||
|
|
||
|
};
|
||
|
|
||
|
video.displays = {
|
||
|
|
||
|
# Internal display
|
||
|
"eDP-1" = {
|
||
|
primary = true;
|
||
|
position = [ 0 0 ];
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
};
|
||
|
}
|