27 lines
556 B
Nix
27 lines
556 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
../common
|
||
../common/graphical
|
||
];
|
||
|
||
networking = {
|
||
hostName = "miniding";
|
||
interfaces.wlp2s0.useDHCP = true;
|
||
};
|
||
|
||
# Enable the X11 windowing system.
|
||
services.xserver = {
|
||
dpi = 144;
|
||
};
|
||
|
||
}
|
||
|