nichts/hosts/lars/kronos/configuration.nix
2024-04-13 19:35:09 +02:00

26 lines
500 B
Nix

{ config, inputs, pkgs, ... }:
{
modules = {
other = {
system = {
hostname = "kronos";
username = "lars";
};
};
hyprland = {
enable = true;
nvidia.enable = true;
monitor = [
"DP-2,2560x1440@144,0x0,1"
"DP-1,1920x1080@60,2560x0,1"
];
extra = {
exec-once = [
"hyprctl dispatch moveworkspacetomonitor 1 DP-2"
];
};
};
};
services.getty.autologinUser = "lars";
}