nichts/hosts/lars/kronos/configuration.nix

18 lines
309 B
Nix
Raw Normal View History

2024-04-12 07:09:49 +02:00
{ config, inputs, pkgs, ... }:
{
myOptions = {
other = {
system = {
hostname = "kronos";
username = "lars";
};
};
2024-04-12 15:53:06 +02:00
hyprland = {
enable = true;
nvidia.enable = true;
};
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
}