1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

indendation

Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
This commit is contained in:
Stefan Ellmauthaler 2021-10-27 13:49:20 +02:00
parent 2d954de23f
commit 8809c7aa7f

View File

@ -1,14 +1,14 @@
{ config, pkgs, ...}: { config, pkgs, ...}:
{ {
imports = [ imports = [
"${builtins.fetchGit { url = "https://github.com/NixOS/nixos-hardware.git"; }}/dell/xps/13-7390" "${builtins.fetchGit { url = "https://github.com/NixOS/nixos-hardware.git"; }}/dell/xps/13-7390"
]; ];
networking.hostName = "stel-xps"; # define the hostname networking.hostName = "stel-xps"; # define the hostname
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
brightnessctl brightnessctl
]; ];
services.autorandr.enable = true; services.autorandr.enable = true;
services.xserver.desktopManager.wallpaper.mode = "fill"; services.xserver.desktopManager.wallpaper.mode = "fill";
} }