nichts/hosts/lars/kronos/configuration.nix
2024-04-12 19:30:10 +02:00

21 lines
400 B
Nix

{ config, inputs, pkgs, ... }:
{
myOptions = {
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"
];
};
};
services.getty.autologinUser = "lars";
}