Change configuration structure for second device

This commit is contained in:
thiloho
2023-05-10 19:59:21 +02:00
parent 1b8af651e4
commit 56ede7e44b
5 changed files with 43 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../shared.nix
];
services.xserver.windowManager.i3.extraSessionCommands = "xrandr --output DP-0 --left-of DP-4 --mode 1920x1080 --rate 144 --output DP-4 --mode 1920x1080 --rate 144";
networking.hostName = "pc";
}