nichts/hosts/lars/kronos/configuration.nix

22 lines
398 B
Nix
Raw Normal View History

2024-04-12 07:09:49 +02:00
{ config, inputs, pkgs, ... }:
{
2024-04-12 22:03:29 +02:00
modules = {
2024-04-12 07:09:49 +02:00
other = {
system = {
hostname = "kronos";
username = "lars";
};
};
2024-04-12 15:53:06 +02:00
hyprland = {
enable = true;
nvidia.enable = true;
2024-04-12 19:30:10 +02:00
monitor = [
"DP-2,2560x1440@144,0x0,1"
"DP-1,1920x1080@60,2560x0,1"
];
2024-04-12 15:53:06 +02:00
};
2024-04-12 07:09:49 +02:00
};
2024-04-12 15:53:06 +02:00
services.getty.autologinUser = "lars";
2024-04-12 07:09:49 +02:00
}