nichts/hosts/lars/kronos/configuration.nix
2024-04-12 15:53:06 +02:00

17 lines
309 B
Nix

{ config, inputs, pkgs, ... }:
{
myOptions = {
other = {
system = {
hostname = "kronos";
username = "lars";
};
};
hyprland = {
enable = true;
nvidia.enable = true;
};
};
services.getty.autologinUser = "lars";
}